PDA

View Full Version : just installed on php5 server question



iphonefreelancer
Sat 27th Oct '07, 8:52pm
ok in the vbulletin online manual it says if you have a server with php5 to do this:

$config['Database']['dbtype']

If you are using PHP5 in combination with MySQL 4.1.x you may want to change this variable to 'mysqli (http://www.vbulletin.com/docs/html/main/mysqli)' to take advantage of the MySQL Improved engine

So do i find the $config['Database']['dbtype'] in the config.php file and then do I change it to this:

$config['Database']['mysqli (http://www.vbulletin.com/docs/html/main/mysqli)']

If not,what do i do?

Steve Machol
Sat 27th Oct '07, 10:44pm
The correct way to edit that line is like this:

$config['Database']['dbtype'] = 'mysqli';