I am using CPanel 11 and the built in phpMyAdmin. I'm trying to import my SQL statements in but am getting the following error:
Any clue as to the issue? My local mySQL is version 5.1.41 and was used to export the statement.#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`0`, `ip_address` varchar(16) NOT NULL DEFAULT `0`, `user_agent` varchar(5' at line 2
CREATE TABLE IF NOT EXISTS `ci_sessions` (
`session_id` varchar( 40 ) NOT NULL DEFAULT `0` ,
`ip_address` varchar( 16 ) NOT NULL DEFAULT `0` ,
`user_agent` varchar( 50 ) NOT NULL ,
`last_activity` int( 10 ) unsigned NOT NULL DEFAULT `0` ,
`user_data` text NOT NULL ,
PRIMARY KEY ( `session_id` )
) ENGINE = MYISAM DEFAULT CHARSET = latin1;