Missing Installed Table flooding
Brought to you by:
wordcircle
Also need to create the following table to get the system running. It's missed in the install.php file
CREATE TABLE `floodlog` (
`flood_id` int(11) NOT NULL AUTO_INCREMENT,
`ip_address` varchar(15) NOT NULL,
`flood_stamp` datetime NOT NULL,
`flooding` tinyint(4) NOT NULL,
PRIMARY KEY (`flood_id`),
KEY `ip_address` (`ip_address`),
KEY `flood_stamp` (`flood_stamp`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;