MyBB Community Forums

Full Version: MySQL Error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to activate/install a plugin and I am getting this error:

[Image: sJUKt.png]

Any idea how I can fix this?
There's something wrong with the query that it's performing.
Can you tell me how to fix it?
Please post the link of that plugin.
Open the plugin file and find;
	$db->query("ALTER TABLE ".TABLE_PREFIX."rememberus DEFAULT".$db->build_create_table_collation());
	$db->query("ALTER TABLE ".TABLE_PREFIX."rememberus_log DEFAULT".$db->build_create_table_collation());
and Comment it out like this;
	//$db->query("ALTER TABLE ".TABLE_PREFIX."rememberus DEFAULT".$db->build_create_table_collation());
	//$db->query("ALTER TABLE ".TABLE_PREFIX."rememberus_log DEFAULT".$db->build_create_table_collation());

Retry to install.
That fixed it!!!! Thank you!!!!