• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved please help me with my server website

damionrashard

New Member
Joined
Sep 27, 2014
Messages
43
Reaction score
0
Converting accounts and characters to work with Znote AAC:


Total accounts detected: 2.
Znote compatible accounts detected: 8.
Old accounts detected: 2.

string(56) "SELECT `password` FROM `accounts` WHERE `id` = LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

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 'LIMIT 1' at line 1


im getting this error when i type in localhost/special. IM USING ZNOTE>

please help
 
Last edited by a moderator:
PHP:
SELECT `password` FROM `accounts` WHERE `id` = LIMIT 1;

You are trying to do a select on an empty where condition, "id" = 'nothing is here' as you can see above.
The code is probably not validating if an account id has been set or selected.
 
Back
Top