* replaced error-suppressions with proper checks * log php errors to db * use __callStatic() to access localization and thus handle erronous keys - Setup: * fixed some erronous filenames when generating icons * increased alpha threshold for spawn maps (should improve spawn points) - disentangled DB::Aowow and DB::World. Aowow should now be able to run with DB::World being on a different server - added missing faction transfer pendants (title/quest/faction/..) - fixed extended costs for specific vendors
11 lines
438 B
SQL
11 lines
438 B
SQL
CREATE TABLE `aowow_errors` (
|
|
`date` INT(10) UNSIGNED NULL DEFAULT NULL,
|
|
`version` SMALLINT(5) UNSIGNED NOT NULL,
|
|
`phpError` SMALLINT(5) UNSIGNED NOT NULL,
|
|
`file` VARCHAR(250) NOT NULL,
|
|
`line` SMALLINT(5) UNSIGNED NOT NULL,
|
|
`query` VARCHAR(250) NOT NULL,
|
|
`userGroups` SMALLINT(5) UNSIGNED NOT NULL,
|
|
`message` TEXT NULL,
|
|
PRIMARY KEY (`file`, `line`, `phpError`, `version`, `userGroups`)
|
|
) COLLATE='utf8_general_ci' ENGINE=MyISAM;
|