• 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!

ZNoteAAC news error

Guiaki

Member
Joined
Jan 3, 2011
Messages
137
Reaction score
8
I keep getting this whenever I open admin news or the index.php:
Code:
string(43) "SELECT `name` FROM `players` WHERE `id` = ;"
(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 '' at line 1
I don't have any news, I tried adding some but didn't worked also

Anyone knows how to fix it?
 
Well, I got a "quick fix" for this, just went to index.php and commented here:
PHP:
/*if ($cache->hasExpired()) {
            $news = fetchAllNews();
           
            $cache->setContent($news);
            $cache->save();
        } else {
            $news = $cache->load();
        }*/
Still not 100%, but for quick fixing you can do this
 
Back
Top