Recently purchased a copy of vbulletin.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Owenimus
    New Member
    • Apr 2019
    • 1
    • 5.3.x

    Recently purchased a copy of vbulletin.

    Hello, I'm a new customer and recently bought vb. I'm using Apache2 on ubuntu and I already installed all the nessesary modules for it. Configured the config files and added .htaccess that came with the package. I can't get past the "delete makeconfig.php". I followed everything that the manual said that came with vB. I have spent 3 days trying to configure everything to no avail. Is there anybody that knows how I can properly configure apache2? Thanks.
  • Mark.B
    vBulletin Support
    • Feb 2004
    • 24287
    • 6.0.X

    #2
    Originally posted by Owenimus
    Hello, I'm a new customer and recently bought vb. I'm using Apache2 on ubuntu and I already installed all the nessesary modules for it. Configured the config files and added .htaccess that came with the package. I can't get past the "delete makeconfig.php". I followed everything that the manual said that came with vB. I have spent 3 days trying to configure everything to no avail. Is there anybody that knows how I can properly configure apache2? Thanks.
    Here's how I always do it and it works every time:

    1. Download the newest vB5 release from the members' area. https://members.vbulletin.com

    2. Unzip the files and go to the "upload" folder.

    3. You need to rename this file:

    htaccess.txt

    To:

    .htaccess
    (Note the 'dot' at the start)

    4. You need to rename this file:

    /config.php.bkp

    To:

    /config.php

    Then, you need to rename this file:

    /core/includes/config.php.new

    To:

    /core/includes/config.php

    Then, in that file, you need to complete the following fields:

    $config['Database']['dbname'] = 'forum';
    Change forum to whatever your database name is.

    $config['Database']['technicalemail'] = '[email protected]';
    Change the email address to your own.

    $config['MasterServer']['username'] = 'root';
    Change root to the database username

    $config['MasterServer']['password'] = '';
    Enter the database password inside the '' marks.

    All other fields should be left as default, unless your database is on a separate server, in which case this will need changing:

    $config['MasterServer']['servername'] = 'localhost';

    5. Upload all files to your server/webspace/whatever and browse to yourforumpath.com/core/install/install.php.

    6. Enter your customer number and the installation will proceed.

    7. Delete the /core/install directory after the installation has finished.
    MARK.B
    vBulletin Support
    ------------
    My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
    My Unofficial vBulletin Cloud Demo: https://www.adminammo.com

    Comment

    Related Topics

    Collapse

    Working...