• 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 in console

Acrenactive

★Designer★
Joined
Mar 21, 2013
Messages
224
Reaction score
55
Location
Los Angels L.A
Hello guys!

how i fix this when player die i get this in console

mysql_real_query(): UPDATE `players` SET `deaths` = `deaths` + 1 WHERE id = 129; - MYSQL ERROR: Unknown column 'deaths' in 'field list' (1054)
 
Last edited:
The error occurs because there is no 'deaths' column in the 'players' table. To solve this run this query in phpMyAdmin:


Code:
ALTER TABLE players ADD COLUMN deaths int(11) DEFAULT 0;


Sorry for my English, I'm using google translate.
 
now i only got this bug mysql_real_query(): UPDATE `players` SET `frags` = `frags` + 1 WHERE id = 53; - MYSQL...t' (1054)

Thanks for death column <3
The error occurs because there is no 'deaths' column in the 'players' table. To solve this run this query in phpMyAdmin:


Code:
ALTER TABLE players ADD COLUMN deaths int(11) DEFAULT 0;


Sorry for my English, I'm using google translate.
 
Back
Top