MyBB Community Forums

Full Version: Upgrade problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When navigating to the "upgrade.php" page, I am presented with a blank, white page. Should this be happening? Is it a permissions error?
John
Are you adding /install/upgrade.php to the end of your forum url? Maybe some of the files didn't correctly upload, so make sure to reupload the entire install folder and try to call the install/upgrade.php file again.
I ran into the same problem, for whatever reason mysqli_connect didn't work on the new release, where it did previously. All I did to make it work was edit inc/config.php and change the first line:
$config['dbtype'] = 'mysqli';
to:
$config['dbtype'] = 'mysql';

HTH,
-Jesse