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

Windows [PHP] Gesior AAC Error!

Sweddy

Well-Known Member
Joined
Feb 14, 2009
Messages
2,907
Reaction score
93
Location
Sweden
Hello, I get this error, even if i reinstall gesior it oes not add samples and give this error idk why :S

Code:
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'g.logo_gfx_name' in 'field list'' in C:\xampp\htdocs\htdocs2\latestnews.php:26 Stack trace: #0 C:\xampp\htdocs\htdocs2\latestnews.php(26): PDO->query('SELECT `g`.`id`...') #1 C:\xampp\htdocs\htdocs2\index.php(63): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\htdocs2\latestnews.php on line 26
 
Last edited:
Why don't you read the notification? Everything is explained: You don't have column named 'g.logo_gfx_name' in your database.
Use any schema to add it. Or use this query, should fix the error, but I'm not sure if it should be varchar or something.

ALTER TABLE `guilds` ADD `logo_gfx_name` VARCHAR(255) NOT NULL DEFAULT "default-logo.png"

Instead of default-logo.png write your default guild logo name.
 
Back
Top