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')
Bookmarks