-- Table structure for `server_settings`
-- ----------------------------
DROP TABLE IF EXISTS `server_settings`;
CREATE TABLE `server_settings` (
`key` varchar(255) NOT NULL DEFAULT 'server.variable',
`value` text NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
That means you are missing a column in a table that it's calling from, so you need to look through your .sql file and find where it should have "key" at or similiar.
Maybe this is what you are missing:
Code:-- Table structure for `server_settings` -- ---------------------------- DROP TABLE IF EXISTS `server_settings`; CREATE TABLE `server_settings` ( `key` varchar(255) NOT NULL DEFAULT 'server.variable', `value` text NOT NULL, `description` text NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;