
11-27-2005, 02:50 PM
|
|
|
Join Date: Apr 2005
Location: This Thread
Posts: 140
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by bonnmac
ok just tried this query and it was not there now i get this error:
PHP Code:
mySQL query error: INSERT INTO games_cats (c_id,cat_name,active,show_all,pos,password,num_of_games) VALUES ('1','Default','1','0','1','','9')
mySQL error: Duplicate entry '1' for key 1
mySQL error code:
Date: Sunday 27th of November 2005 09:35:07 AM
there are no queries to run in install instructions and i can't get the install script to work cause i keep getting errors just a reminder this is vb 3.07 arcade upgrade from 2.51 please help thanks
|
try this, this will throw your game counts out as it will delete the cat so the script can recreate it, otherwise you can try to comment out the query from the install file.
Code:
DELETE FROM games_cats WHERE c_id = 1;
|