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.