How to cofigure a database into a config.php file?

vauxhall07

New Member
Hi all

Sorry to sound dumb,but u dont learn if u dont ask...lol
Im just starting out at building a site
im trying to install this: vbulletin 3.6.10 vbtt php pre mod
and it says i have to configure the database into the config.php file
How exactly do i do this?
can anyone give me step by step instructions? or is there any tutorials showing me how to do this?

T.I.A
 

h@ck3r

New Member
There should be instructions/ an .NFO included in the release.

If not.. post a link to it here.
 

h@ck3r

New Member
TBH That guide is self explanatory.

If you can't follow that, you really should be asking someone who is capable of doing it; to do it :)
 

Grinderhand

New Member
vauxhall07 said:
Thanks for that ive read that before but tbh i dont know what parts i have to edit and how
I really could do with some pics highlighting what i have to do

config.php is just a text file. You can edit it with notepad or any other editor that does not insert any kind of formatting crap.

Answer a couple of questions to see if you're even ready for this step:

1. Do you have hosting?

2. Have you created a database?

3. Have you assigned a user with a password for the database?

4. Do you know if your database server is localhost or has a specific address?

If you answer no to any of the above, you are not ready to edit config.php.
 

ChopSuey

New Member
vauxhall07 said:
Thanks for that ive read that before but tbh i dont know what parts i have to edit and how
I really could do with some pics highlighting what i have to do

Most Important In Your Config File.

PHP:
$config['Database']['dbname'] = '';
$config['MasterServer']['username'] = '';
$config['MasterServer']['password'] = '';
$config['MasterServer']['servername'] = '';

Server Name Should Be Your MySQL Server
 
Top