MyBB Community Forums

Full Version: Need help fully removing a plugin after transfer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I just transfered my forum to a new host and my plugins got all messed up, I am using form manager 2.0 that I purchased awhile back.

function form_manager_deactivate() 
{
global $db;
$db->query("DROP TABLE ".TABLE_PREFIX."forms");
$db->query("DROP TABLE ".TABLE_PREFIX."forms_items");
$db->query("DROP TABLE ".TABLE_PREFIX."forms_protect");
$db->query("DROP TABLE ".TABLE_PREFIX."form_responses_logged");


I tried dropping these tables but it won't let me deactive it! 

Any help would be appreciated!

52 views 0 replys

52 views 0 replys
You can try just deleting the files you uploaded through your ftp.
(2017-04-14, 01:26 PM)Dead-i Wrote: [ -> ]You can try just deleting the files you uploaded through your ftp.

I tried that and dropped the tables now it wont let me deactivate because the table doesn't exist

thanks for the reply
as you have dropped the plugin related tables, deleting the plugin files should be enough to remove it.