Quote:
Originally Posted by MrZeropage
You set vBulletin now to mysqli (config.php) or changed ibProArcade back to mysql?
I think I should read the config.php and use the value from there, to always fit the right database-driver... hmmmm first feature for v2.7.6 
|
The best I can tell, that's what you're already doing. It was because I had the config.php file set to "mysql" that the wrong dbclass file was being read. Your product was functioning correctly, it was because I had the wrong value in my config.php file that the problem occurred.
You have the following code in arcade.php:
PHP Code:
// support for mysqli by MrZeropage
if ((strtolower($config['Database']['dbtype']) == "mysqli") && ($MYSQLI == 1))
{
$sql_driver = FUNCTIONS_PATH . "dbclass_mysqli.php";
}
That was what led me to check my config.php file, and there I discovered I needed to edit that file to define the db as "mysqli" and once I did everything worked flawlessly.