i get this error when i try to use my site arcade can anyone tell me how to fix it?ERROR, No Game Data Received
DEBUG MODE
SQL Error : 1054 Unknown column 'game_id' in 'where clause'
SELECT * FROM an1m3clan_ina_games WHERE game_id = 0
phpbb arcade error?
phpbb arcade error?
the game_id column is missing in the database, so you have to add it. I found this query which have worked for people with the same problem:
simply run it in phpmyadmin... 
Code: Select all
ALTER TABLE `an1m3clan_ina_games' ADD `game_id' MEDIUMINT( 9 ) DEFAULT '0' NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST
