I got the dreaded Invalid SQL schema when trying to install. As I read in other posts, I changed the error line to print the full error and SQL and got this:
Invalid SQL schema. Get help from Developers CREATE TABLE `sow_api_key` ( `id` int(10) unsigned NOT NULL auto_increment, `isactive` tinyint(1) NOT NULL default 1, `ipaddr` varchar(16) NOT NULL, `apikey` varchar(255) NOT NULL, `updated` datetime NOT NULL default \'0000-00-00 00\', `created` datetime NOT NULL default \'0000-00-00 00\', PRIMARY KEY (`id`), UNIQUE KEY `ipaddr` (`ipaddr`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8
It seems that it's inserting backslashes in front of each quote. The backslashes aren't in the .sql in the inc/ directory, it seems the load is doing it. Anything I'm missing?