Hmm... actually, if you feel like editing one of the PHP files, I may have a solution for you.
Edit the /install/files/code.php and in the ft_install_create_database function (around line 260), right after these lines:
Add the following two lines:
Let me know if that works for you!
- Ben
Edit the /install/files/code.php and in the ft_install_create_database function (around line 260), right after these lines:
PHP Code:
// connect to the database
$link = @mysql_connect($hostname, $username, $password);
@mysql_select_db($db_name);
Add the following two lines:
PHP Code:
// suppress strict mode
@mysql_query("SET SQL_MODE=''", $link);
Let me know if that works for you!
- Ben