faeronsayn
Well-known member
I've imported a database that was filled with plugins. But I don't have the plugin files, hence I can't manually remove them.
I was wondering how I can simply run a query that preserves all the xf default tables and removes all the plugin additions.
Any idea on how to go about this?
Edit: This is the query I ran to disable all the addons since it wouldn't let me without the addon files.
I was wondering how I can simply run a query that preserves all the xf default tables and removes all the plugin additions.
Any idea on how to go about this?
Edit: This is the query I ran to disable all the addons since it wouldn't let me without the addon files.
Code:
UPDATE xf_addon
SET active = '0'
WHERE active = '1';