Quote Originally Posted by tacotupac View Post
I just tried to install tabbed products lite on to my site and it isn't working. I believe this to be due to the sql file not installing right. I uploaded the files into the correct template and ran the sql update and all I get was:

1146 Table 'tacoman1_zc5.configuration_group' doesn't exist
in:
[SELECT @gid := configuration_group_id FROM configuration_group where configuration_group_title LIKE 'Tabbed Products Config';]
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.

Thus I cannot get it to work. nothing in the admin-config-tabbed area. and when I try to use a tab code, it displays an error on the webpage. And yes im only using source code not the htmlarea that is included in zen cart.

The site is up if it helps www.discountsupplementstore.com

Thanks,

Josh
Are you using a database prefix? To fix your problem, you need to add your database prefix to the sql file.

so globally replace:

FROM configuration_group --> FROM prefix_configuration_group
FROM configuration --> FROM prefix_configuration
INTO configuration_group --> INTO prefix_configuration_group
INTO configuration --> INTO prefix_configuration
UPDATE configuration_group --> UPDATE prefix_configuration_group

Be sure to use the your actual prefix, not just the word "prefix"

Does that help?

If you still can't get it working. There is a NonAdminEdition folder in your /includes/modules/ folder. Copy the version of tabbed_products_lite.php up one level to the includes/modules folder, replacing the existing Admin version. All changes will now have to be made inside the header of that file instead of via the admin panel, but at least it will get you up and running.