
Originally Posted by
Page
I have found discussions about this error but still am unable to find the solution. I installed lightbox yesterday using the current link. I am on step 5 in the readme file. This is the error I am getting:
Error
SQL query:
INSERT INTO `configuration_group`
VALUES (
NULL , 'Zen Lightbox', 'Configure Zen Lightbox settings', '0', '1'
);
MySQL said: Documentation
#1146 - Table 'hipdockc_znc1.configuration_group' doesn't exist
Please advise. I am new so please reply with an explanation I will understand. Thanks so much.
Hi Page,
I havent personally dealt with the prefix issue, but I just tested it and was able to reproduce your results. According to this post on the thread: Your database has a prefix before the names of the tables. you need to find out what the table prefix is:
if you open [includes/configure.php] and look for the line
Code:
define('DB_PREFIX', 'yourPrefixHere_');
you'll want to take that part in red and then update your install.sql file as shown in the link. (all the places in red).
Danel