View Single Post
  #6  
Old 03-01-2011, 02:20 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,332
Default

Thanks lerxst, but I sourced this to create a new table and seems to work
fine now. I seen an error before that I couldn't find in the logs, it was saying
the table didn't exist, but it was there and empty, so a new one seemed to
fix the problem. I am not sure why it ended up that way, just from transferring
the DB to another host, but turned out all good.

Code:
DROP TABLE IF EXISTS `Banned_IPs`;
CREATE TABLE `Banned_IPs` (`ip_address` varchar(32) NOT NULL,`notes` varchar(32) default NULL);
Reply With Quote