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

Trying to enter my account in gesior 0.3.4

quixer

New Member
Joined
Jun 22, 2008
Messages
196
Reaction score
0
Hello.

i get this error when i try to enter my character in page :

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'time' in 'order clause'' in C:\xampp\htdocs\characters.php:200 Stack trace: #0 C:\xampp\htdocs\characters.php(200): PDO->query('SELECT * FROM p...') #1 C:\xampp\htdocs\index.php(142): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\characters.php on line 200
 
Last edited:
Code:
[COLOR=#993333][B]
ALTER[/B][/COLOR] [COLOR=#993333][B]TABLE[/B][/COLOR] [COLOR=#ff0000]`players`[/COLOR] [COLOR=#993333][B]ADD[/B][/COLOR] [COLOR=#ff0000]`redskulltime`[/COLOR] [COLOR=#993333][B]BIGINT[/B][/COLOR] [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR] [COLOR=#993333][B]DEFAULT[/B][/COLOR] [COLOR=#cc66cc]0[/COLOR];
Code:
  [COLOR=#993333][B]ALTER[/B][/COLOR] [COLOR=#993333][B]TABLE[/B][/COLOR] [COLOR=#ff0000]`players`[/COLOR] [COLOR=#993333][B]ADD[/B][/COLOR] [COLOR=#ff0000]`redskull`[/COLOR] [COLOR=#993333][B]SMALLINT[/B][/COLOR] [COLOR=#993333][B]NOT[/B][/COLOR] [COLOR=#993333][B]NULL[/B][/COLOR] [COLOR=#993333][B]DEFAULT[/B][/COLOR] [COLOR=#cc66cc]0[/COLOR];
 
Now i get this :
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'time' in 'order clause'' in C:\xampp\htdocs\characters.php:200 Stack trace: #0 C:\xampp\htdocs\characters.php(200): PDO->query('SELECT * FROM p...') #1 C:\xampp\htdocs\index.php(142): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\characters.php on line 200
 
Try
Code:
ALTER TABLE `players` ADD `time` BIGINT NOT NULL DEFAULT 0;
 
Last edited:
Back
Top