View Single Post
  #4  
Old 11-04-2004, 07:08 AM
McFox666
Sarnak
 
Join Date: Nov 2004
Posts: 62
Default Re: "Enter World" Problem

Quote:
Originally Posted by Derision
Quote:
Originally Posted by McFox666
Code:
Unknown column 'revoked' in 'field list'
Well, this may indicate that you do not have the 'revoked' field in your account table, which you can try to fix with:

Code:
ALTER TABLE `account` ADD `revoked` TINYINT(3) UNSIGNED DEFAULT "0" NOT NULL;
However, the revoked field has been in the database for a long time, so it is odd that it is missing in your DB.
Many thx ! It works ^^
Reply With Quote