i have a problem with a script i bought please help guys! i just dont know (should be easy

TalP123

Regular Member
Joined
Feb 23, 2013
Messages
268
Reaction score
63
hey guys
i have a problem with a script here it is
Code:
A fatal error has occured... Error in database query Table 'puredown_mafia.1account' doesn't exist with query UPDATE `1account` SET `logged_in` = '0'WHERE `id` = '0' LIMIT 1
i just dont know what to type in my phpadmin sql, i dont know how to add it
can someone write here the code i should add?
 
Did you initialize the SQL ?
The script probably contains a xxxxx.sql file.
Open PHPMyAdmin and select SQL. Paste the contents of the file in there.
It should create the database and tables.


If you already did that, I only see one thing wrong with the query:
try putting a space between ' and WHERE :
Code:
...SET `logged_in` = '0' WHERE `id`...
                      ^^^^^^^

PS: you will need to edit the script for this
 
Last edited:
Back
Top