Quote:
Originally Posted by emtee
A while time ago, I installed the old version 1.2 for 3.0.x, but I didn't uninstall it. Then I upgraded to 3.5.x a few months ago, and now I want to install this version 2.1.2, but the old version 1.2 is still in the database, thus duplicate entries and it won't install. Can you give me the queries needed to run in order to completely remove the old YAAS 1.2 hack?
I tried to use the uninstall (for 3.0.x) to run on 3.5.x but it won't do any good. Can you help? Thank you.
|
the new version supposed to check for old version and upgrade database to 2.x with out problem.
if you really want to remove them manually, try these: (add table prefix if you use it)
[SQL]DELETE FROM settinggroup WHERE grouptitle LIKE 'awards';
DELETE FROM setting WHERE grouptitle LIKE 'awards';
DELETE FROM phrase WHERE (varname LIKE '%award%' OR varname LIKE 'setting_aw%') AND languageid = 0;
DROP TABLE IF EXISTS award;
DROP TABLE IF EXISTS award_user;
DROP TABLE IF EXISTS award_cat;
[/SQL]
|