You need to run this SQL against your database. It is from 1711_account_restricted_aa.sql. You may also be missing other updates. I believe Huppy's guide details where to find them and how to apply them.
ALTER TABLE `altadv_vars` ADD `account_time_required` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `clientver`;
ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
If the first line causes an error, then you should only run the last two lines.
|