I need some help please to get this to work. I spent the afternoon working on it. I did try the obvious fix I found on this post but no luck. First, I'm am running 1.3.8a with the following mods;
-About Us
-Add More Information Side Boxes
-What's New Scroller

I'll try to outline clealy what i've done, and what the results were.

Installed Mod following directions being sure to substitute my custom folder where appropriate.

Ran SQL script and got the following error:
"1146 Table 'woodwork_zc1.configuration_group' doesn't exist
in:
[SELECT @cgi := configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Zen Lightbox';]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

Checked database using phpMyAdmin and found that tables have zen_ prefix. Chaged the following in SQL script:
INSERT INTO `configuration_group`
INSERT INTO `zen_configuration_group`

UPDATE `configuration_group`
UPDATE `zen_configuration_group`

FROM `configuration_group`
FROM `zen_configuration_group`

INSERT INTO `configuration`
INSERT INTO `zen_configuration`

Ran SQL uninstall script to clean up database.

Ran modified SQL script and got the following errors:
4 statements processed.
ERROR: Cannot execute because table zen_configuration_group does not exist. CHECK PREFIXES!
ERROR: Cannot execute because table zen_configuration_group does not exist. CHECK PREFIXES!
ERROR: Cannot execute because table zen_configuration_group does not exist. CHECK PREFIXES!
ERROR: Cannot execute because table zen_configuration does not exist. CHECK PREFIXES!
Note: 3 statements ignored. See"upgrade_exceptions" table for additional details.

I thought I'd stop here before I do any damage. Seems like the tables exists, but they can't be found by the script. Can anyone help. Thanks.

Tim