Log in

View Full Version : cinfig.php editing question


hunter22375
04-09-2008, 03:35 PM
OK, just to clarify:

$config['Database']['dbtype'] = 'mysql'

Its the 'mysql' that needs to be changed, correct? Or in the following example, if my db name was vb.....

$config['Database']['dbname'] = 'forum'

I would replace the 'forum' with 'vb' Correct?

Bradley_Wint
04-09-2008, 03:44 PM
$config['Database']['dbtype'] = 'mysql'; >> leave as is or mssql if you are using MS Access Database

$config['Database']['dbname'] = 'databasename'; >> name of your database
$config['Database']['tableprefix'] = 'vb_'; >> prefix before each table name entry (e.g. vb_members, etc).

$config['MasterServer']['username'] = 'db_username'; >> username of mysql database
$config['MasterServer']['password'] = 'assword'; >> password to mysql db

hunter22375
04-09-2008, 03:46 PM
Cool thank you.