Quote Originally Posted by Design75 View Post
I think some modules remove the IH_VERSION key from your database when installed because they remove all values with configuration_group = 0. This could result in the symptoms you described.
if it is missing use something like the query below to add it again. Be sure to use the right version Value
Code:
INSERT INTO configuration (`configuration_id`, `configuration_title`,  `configuration_key`, `configuration_value`, `configuration_description`,  `configuration_group_id`, `sort_order`) VALUES (NULL, 'IH version',  'IH_VERSION', '4.3.2', 'IH Version is stored but not shown on  configuration menus', '0', '10000')
If that is the case (that the configuration_group_id of 0 got removed) then there are likely other problems as there are a few ZC values (if I remember correctly there are three keys) that have historically defaulted to configuration_group_id of 0.