ok, 1 last thing. i'm guessing that the problem is not related to only zen_cfg_select_option, but also to any zen_cfg_* function.
you can try the following 2 mysql commands. the first 1 will make a copy of your configuration table, the 2nd one will replace any problem set functions with hopefully the correct one. please note that mysql commands come with no warranty of any kind, and really run the risk of losing data. so ensure you have a good backup.
Code:
CREATE TABLE configuration_bkp AS (SELECT * FROM configuration);
UPDATE configuration
SET set_function = REPLACE(set_function, 'cfg', 'zen_cfg')
WHERE `set_function` LIKE 'cfg_%';
i have tested both of these mysql commands, but again, use with caution.
best.
Bookmarks