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.