Quote:
Originally Posted by Dave234
I wish I understood what you say on the previous page. I'm nowhere near that advanced on vbulletin. I am a complete novice here. Couldn't I just uninstall the thing from my plugin manager, and then re-install it through the ftp like I'd done the first time?
|
Unfortunately not, there's an error in the uninstallation code, actually an omission, that prevents the plugin from uninstalling correctly.
First uninstall YAAS from the product manager.
Then to do what I posted on the previous page, in admincp go to Maintenance->Execute SQL Query
When prompted run the following query:
This will give you the list of all tables in your db, look for the ones that have awards in their name, there should be between one and three of them, most likely three. In my db the tables are called:
Code:
award
award_cat
award_requests
The names might be different in your db, especially if your tables have a prefix. Take note of the names, and then run
drop table queries, one per table, to remove the tables.
So if I was removing the three tables from my db I'd run the following three queries:
Code:
drop table award_cat
Code:
drop table award_requests
Then I could reinstall YAAS from scratch.