Hi folks, I'm hoping you can help me solve a problem I'm having with a vB install. When I go to the install.php url, I immediately get the following error before the script even loads:
Here are the relevent parts of my config file:
The database is a newly created one without any tables in it. I thought the install script was supposed to create the tables? Why is it looking for them before they're created?
Obviously I'm not understanding something correctly. Your help would be grately appreciated!
Thanks.
Code:
Database error in vBulletin : Invalid SQL: SELECT title, data FROM datastore WHERE title IN ('','options','bitfields','forumcache','usergroupcache','stylecache','languagecache','products','pluginlist','cron'); MySQL Error : Table 'temp1_com_vb.datastore' doesn't exist Error Number : 1146 Date : Wednesday, May 10th 2006 @ 08:55:25 PM Script : [URL="http://www.vicphysics.org/forumnew/install/install.php"]http://www.vicphysics.org/forumnew/install/install.php[/URL] Referrer : IP Address : 210.49.222.176 Username : Classname : vb_database
Code:
// ****** 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'] = 'temp1_com_vb'; // ****** 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'] = [EMAIL="%[email protected]"]'[email protected][/EMAIL]'; // ****** 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'] = 'localhost'; $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'] = 'aip'; $config['MasterServer']['password'] = '*******';
Obviously I'm not understanding something correctly. Your help would be grately appreciated!

Thanks.
Comment