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

mysql problem

gizzzmo

New Member
Joined
Dec 29, 2009
Messages
91
Reaction score
0
[03/02/2010 22:07:56] mysql_real_query(): UPDATE `players` SET `rep` = `rep` + 5 WHERE `id` = 62; - MYSQL ERROR: Unknown column 'rep' in 'field list' (1054)


How can I fix this? I'll rep for those who help ofcourse.

Thanks.
 
you installed a rep system i quess you need to modify the Db to get it working! check the step by step to see what you did wrong!
 
first go to localhost/phpmyadmin and go to your db
and click sql and put this

ALTER TABLE `players` ADD `rep` INT( 11 ) NOT NULL DEFAULT '0';
and thats all rep if I helped you( I hope)
 
Back
Top