MyBB Community Forums

Full Version: problem installing game section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. i`m trying to install game section but i get this error when i try to activate it from admin cp.


MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
    1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=innodb' at line 6
Query:
    CREATE TABLE mybb_gamecp_games ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, shortcut VARCHAR(14), name VARCHAR(40), description TEXT ) TYPE=innodb; 
I will guess that you are using InnoDB (seen in the error)... I have had 1064 before, and my guess is:

Go to the plugin file ( I think it is FORUMROOT/inc/plugins/games.php ), and find
Type=InnoDB
and change it to
Engine=InnoDB

I can't promise this to be a fix --- but I think it might work.