Quote:
Originally Posted by jdebler
I could not make it work after the upgrade no matter what. The query's would just not run only got database errors. Our garage was pretty new and only had a few users so I used the "Action-N" uninstaller (link in "modifications/add-ons"), ran the uninstall and went right back and ran the install. The files edits and tables changes were left alone. It works perfect now but we lost all the data in the garage so we will have to start over. worked for us
Mike
|
I ran into those database errors too, I had to append the SQL queries with my database prefix to get it to work
I hade to make
Code:
INSERT INTO settinggroup (grouptitle, displayorder, volatile) VALUES ('vbgarage', '650', 1);
into
Code:
INSERT INTO [your db prefix]_settinggroup (grouptitle, displayorder, volatile) VALUES ('vbgarage', '650', 1);
Do that to each line of the query, and it will work fine.