How to Set up VB???

Discussion in 'vBulletin' started by Adam Fletcher, Dec 21, 2006.

  1. #1
    Hello Everyone,

    I am setting up VB on one of my sites but I am stuck on the cofig bit

    I have to but the database info here.

    Can anyone tell me how to set this bit up???

    Thanks
    Adam
     
    Adam Fletcher, Dec 21, 2006 IP
  2. venom

    venom Guest

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Well if its just a basic setup with a single database you should only need to change these

    
    $config['Database']['dbname'] = 'your_db_name';
    $config['MasterServer']['username'] = 'mysql_username';
    $config['MasterServer']['password'] = 'mysql_password';
    
    Code (markup):
    Also if your running newer version of mysql (4.1+) you'll need

    
    $config['Database']['force_sql_mode'] = true;
    
    Code (markup):
     
    venom, Dec 21, 2006 IP