MyBB Community Forums

Full Version: Games in 1.2
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, on one of my other sites, I decided to keep 1.2, but upload the games program. I did everything right on the money, but when I click activate, I get this:

MySQL error: 1050
Table 'mybb_games' already exists
Query: CREATE TABLE mybb_games ( gid INT(10) NOT NULL AUTO_INCREMENT, cid INT(2) NOT NULL, title VARCHAR(50) NOT NULL, name VARCHAR(50) NOT NULL, description TEXT NOT NULL, what TEXT NOT NULL, use_keys TEXT NOT NULL, played INT(15) DEFAULT '0' NOT NULL, bgcolor VARCHAR(6) DEFAULT '000000' NOT NULL, active VARCHAR(3) DEFAULT 'yes' NOT NULL, width VARCHAR(4) DEFAULT '500' NOT NULL, height VARCHAR(4) DEFAULT '500' NOT NULL, dateline BIGINT(30) NOT NULL, score_type VARCHAR(5) DEFAULT 'DESC' NOT NULL, rating INT(1) NOT NULL, PRIMARY KEY (gid) );

Any ideas?
It means when trying to add the tables to the database they are already there.

Go into phpmyadmin and drop the table listed.(mybb_games in this case) Then try activating it.