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

Znote Problem

Tovar

Brak V
Joined
Jul 26, 2008
Messages
347
Reaction score
8
Any one know how to fix this problem?

Code:
string(42) "SELECT ip, value FROM znote_visitors"
(query - SQL error)
Type: select_multi (select multiple rows from database)

This appear when I try to enter in the site.

Znote told me to do this.

Code:
After you enable the appropriate php extention:
extension=php_mysqli.dll (windows)

After that it should work. Znote AAC still only works with a mysql server, but uses the mysqli class to establish and communicate with the server.

and I've search on the Uniserver menu and php_mysql and php_mysqli both are enable.... :/
 
Look into the php.ini and search for that extension. I don't really know where the ini is located, but it should be inside the php folder.
 
If someone have the same problem, go to www/engine/database/connect.php and search for the line
Code:
function mysql_select_multi($query){
and after it put
Code:
global $connect;
this is how I fix it.
 
Back
Top