MyBB Community Forums

Full Version: Can't install plugins
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Not really sure what I've done but, I can't seem to install plugins anymore. I tried to install Quick Register and this is the error I get.

Quote:MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1146 - Table 'froggaco_mybb.mybb_mybb_templates' doesn't exist
Query:
INSERT INTO mybb_mybb_templates (tid,title,template,sid) VALUES ('NULL','quickregister','
Because Quick Register mod is too old to be used for 1.6.x

Open plugin file and find;
	$db->insert_query(TABLE_PREFIX."templates", $templatearray);
and Change it into;
	$db->insert_query("templates", $templatearray);

It should work now. =)
Thank you!