To everyone getting the SQL error 1146 about a table not existing ... you need to know the name of the table that was used to install zen cart and add that prefix in the sql install code. For example, my name is "store" so I had to change the install code to ....
INSERT INTO `storeconfiguration_group` VALUES (NULL, 'Zen Lightbox', 'Configure Zen Lightbox settings', '0', '1');
UPDATE `storeconfiguration_group` SET `sort_order` = LAST_INSERT_ID() WHERE `configuration_group_id` = LAST_INSERT_ID();

SELECT @cgi := `configuration_group_id` FROM `storeconfiguration_group` WHERE `configuration_group_title` = 'Zen Lightbox';
If you don't know the name of your table, you can find it via your phpMyAdmin.

I still got a couple of errors doing this, but it is working ???