
Originally Posted by
qhome
Are you using a prefix on your database tables? If you are you need to edit the sql file and add the prefix to each table call
No, I don't have a prefix. But I seemed to have fixed the problem.
I changed one value in one of the inserts.
Was
Code:
INSERT INTO configuration_group VALUES ('', 'USPS Auto-Fill Config', 'USPS Auto-Fill Config', '1', '1');
changed the first set of empty '' to
Code:
INSERT INTO configuration_group VALUES ('NULL', 'USPS Auto-Fill Config', 'USPS Auto-Fill Config', '1', '1');
That NULL seemed to have done the trick. I'm not sure why that is. I'm using Zen Cart 1.3.8a and PHP Version 5.1.6.
Andrew