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

[WebSite] Fatal error: Uncaught exception 'PDOException'

FKaupert

Joker Wolf
Joined
Nov 14, 2009
Messages
60
Reaction score
0
Location
Brazil
When I click on any character, to see your information, this gives error:

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'id' in 'field list'' in C:\xampp\htdocs\characters.php:95 Stack trace: #0 C:\xampp\htdocs\characters.php(95): PDO->query('SELECT `id`, `d...') #1 C:\xampp\htdocs\index.php(111): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\characters.php on line 95
 
It tries to insert a id in the mysql database table that already exists, which isn't allowed because it's a unique field (as in there can only be one of each value) or, waht seems to be your case, there's already a field called ID
 
Back
Top