View Single Post
  #15  
Old 07-08-2012, 12:54 AM
Hool
Fire Beetle
 
Join Date: May 2010
Location: Texas
Posts: 16
Default

I know this is old, but wanted to make a contribution.

When migrating from windows to linux, i had a case issue with the Banned_IPs table getting converted to lower case.

here is the fix...

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

note the case.
Reply With Quote