It should work,
If you are upgrading from a diferent software
Steps to take:
1. Upload all files to your server
2. open the folder "
includes"
and find
config.php.new and rename it to
config.php (or you can do this before you upload it to your server)
3. edit the config.php and enter your server info
4. CHMOD all files to 777
5. Execute keygen.php--- ww .yoursite.com/keygene.php and save the customer number.
6. delete the keygen.php
7. go to www .yoursite.com/install/install.php
8. enter the customer number that you got from the keygen and install the forum
9.
Enjoy your new forum
Most important thing is config.php
this is the area that you should edit, lots of people get the error because they left something out in config.php
Code:
=======================================================
// ****** DATABASE TYPE ******
// This is the type of the database server on which your vBulletin database will be located.
// Valid options are mysql and mysqli, for slave support add _slave. Try to use mysqli if you are using PHP 5 and MySQL 4.1+
// for slave options just append _slave to your preferred database type.
$config['Database']['dbtype'] = 'mysql';
// ****** 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'] = '[b]YOUR DATABASE NAME HERE[/b]';
// ****** TABLE PREFIX ******
// Prefix that your vBulletin tables have in the database.
$config['Database']['tableprefix'] = '';
// ****** 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'] = '[b][email protected][/b]';
// ****** FORCE EMPTY SQL MODE ******
// New versions of MySQL (4.1+) have introduced some behaviors that are
// incompatible with vBulletin. Setting this value to "true" disables those
// behaviors. You only need to modify this value if vBulletin recommends it.
$config['Database']['force_sql_mode'] = false;
// ****** MASTER DATABASE SERVER NAME AND PORT ******
// This is the hostname or IP address and port of the database server.
// If you are unsure of what to put here, leave the default values.
$config['MasterServer']['servername'] = '[b]YOUR SERVER NAME HERE[/b]';
$config['MasterServer']['port'] = 3306;
// ****** 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'] = '[b]YOUR USER NAME HERE[/b]';
$config['MasterServer']['password'] = '[b]YOUR PASSWORD HERE[/b]';
=======================================================