By OzButcher on
Hi,
I've only just started using Drupal. I've installed everything fine but then I tried to install a Calendar Module which required also: Date, Views and CCK module. I think it was when I was installing the Date module something didn't work (mysql). Now I keep getting this error when I try to click on 'Contact' on a users profile:
user warning: Table 'U5957349.flood' doesn't exist query: SELECT event FROM flood WHERE event = 'contact' AND hostname = '124.168.98.250' AND timestamp > 1187860966 in http://www.<snipped>.com/includes/database.mysql.inc on line 172.
I can't seem to be able to uninstall the date or views module :(
Any help appreciated.
Comments
Same problem too!
Some help, please!
It worked for me!
Using PHPMyAdmin or something similar create the missing table with this statement:
CREATE TABLE `flood` (
`event` varchar(64) NOT NULL default '',
`hostname` varchar(128) NOT NULL default '',
`timestamp` int(11) NOT NULL default '0'
) TYPE=MyISAM;
...and the error message is gone.