Quote Originally Posted by MULISH View Post
I am attempting to install the zen lightbox on my server and I am getting this error:


1146 Table 'kbusa_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.


I then return to my admin panel and click >config>zen lightbox and nothing shows up...

I am running the appropriate version of zen cart (1.3.8), and I am also trying to install that same version of lightbox... any feedback would be great. Thank you

You need to edit the install.sql file that is in the zen_lightbox folder. For some reason the writer of this plugin failed to add the table prefix "zen_" to the table insert commands.

Change this - INSERT INTO `configuration_group
to this - INSERT INTO `zen_configuration_group

Change this - INSERT INTO `configuration
to this - INSERT INTO `zen_configuration

Mike