This is from 1711, which you may not think you need if you started with a database newer than that, but it's been a very common problem for people.
I don't remember which actual log would show the error, but it's best to delete them all, try and log in, and then examine all the files generated to be sure.
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;
|