includes/config.php var.

config.php dosyasını açıp, db adı,kullanıcı adı ve şifresini yazacaksınız.

Daha sonra siteadi.com/install/install.php olarak çalıştırıp 11 adımda vbulletini kuracaksın, sonra da install klasörünü ftpden sileceksin.

config.php' de düzenlemen gereken yerler aşağıdaki gibidir.

//    ****** DATABASE NAME ******  
    //    This is the name of the database where your vBulletin will be located.  
    //    This must be created by your webhost.  
$config['Database']['dbname'] = 'databaseadi';
Database hatası aldığın zaman e-mail ile hangi adrese iletilmesini istiyorsan o e-mail adresini buraya yazacaksın.
 //    ****** TECHNICAL EMAIL ADDRESS ******  
    //    If any database errors occur, they will be emailed to the address specified here.  
    //    Leave this blank to not send any emails when there is a database error.  
$config['Database']['technicalemail'] = 'dbmaster@example.com';
//    ****** MASTER DATABASE USERNAME & PASSWORD ******  
    //    This is the username and password you use to access MySQL.  
    //    These must be obtained through your webhost.  
$config['MasterServer']['username'] = 'dbkullaniciadi';  
$config['MasterServer']['password'] = 'dbkullanicisifresi';
    //    ****** SLAVE DATABASE CONFIGURATION ******
    //    If you have multiple database backends, this is the information for your slave
    //    server. If you are not 100% sure you need to fill in this information,
    //    do not change any of the values here.
$config['SlaveServer']['servername'] = 'localhost';
$config['SlaveServer']['port'] = 3306;
$config['SlaveServer']['username'] = 'dbkullaniciadi';
$config['SlaveServer']['password'] = 'dbkullanicisifresi';
$config['SlaveServer']['usepconnect'] = 0;