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

Error with accound name and players name Help!

Frostooo

New Member
Joined
Feb 12, 2014
Messages
1
Reaction score
0
I has problem with me account name and players name.
Down is Script and Screenshots.

ormsjglcdmpldzyjhuugxnhylesnqskuretwnrufvwadfpykcbfwdybbjoheoxllcutzgbvqzokbndsvgikpnoqtcsmzjprxkpblvzdafowpnaofvlygmwxoeawnowgk


$this->data = $this->db->query('SELECT ' . $this->db->fieldName('id') . ', ' . $this->db->fieldName('name') . ', ' . $this->db->fieldName('password') . ', ' . $this->db->fieldName('email') . ', ' . $this->db->fieldName('blocked') . ', ' . $this->db->fieldName('rlname') . ', ' . $this->db->fieldName('location') . ', ' . $this->db->fieldName('key') . ', ' . $this->db->fieldName('premium_points') . ', ' . $this->db->fieldName('page_access') . ', ' . $this->db->fieldName('premdays') . ', ' . $this->db->fieldName('lastday') . ', ' . $this->db->fieldName('created') . ' FROM ' . $this->db->tableName('accounts') . ' WHERE ' . $this->db->fieldName('id') . ' = ' . (int) $id)->fetch();

And player name errors.

stapzasrbbbtmxmnuwnngfdwsqabsteigwconhquezuzqswwfdzwfpmnpexjaqyiwsnquxamfsigkdfztdwothdqkpzikguobmdyfgchdmrmhfclzxqxujooowfeyrcz


$id = $this->db->query('SELECT ' . $this->db->fieldName('id') . ' FROM ' . $this->db->tableName('players') . ' WHERE ' . $this->db->fieldName('name') . ' = ' . $this->db->quote($name) )->fetch();v

Maybe someone knows what the problem is.?
 
In index.php set DEBUG_DATABASE false to true to see the error about what's missing in the database.
PHP:
define('DEBUG_DATABASE', true);
Set it back to false after that.
 
Back
Top