You'll have to do a manual install.
- Make sure htdocs\app\config\database.php contains the correct database information
- Go to http://localhost/phpmyadmin and check if the database has been created and contains the correct tables/data (eg. check users table contains 'admin' and requirements table contains 2 google requirements)
- Create the file htdocs\app\tmp\installed.txt
- Go to http://localhost and login with admin/admin
If #1 fails:
Create the file database.php with the following contents:
<?php
class DATABASE_CONFIG {
var $default = array(
'driver' => 'mysql',
'persistent' => false,
'host' => 'localhost',
'login' => 'root',
'password' => '',
'database' => 'bromine',
'prefix' => '',
);
}
?>
Change database information to match your local system.
If #2 fails
Go to htdocs\app\webroot\install and open bromine.sql (that's htdocs\app\config\sql\bromine.sql if you are using the SVN version)
Go to http://localhost/phpmyadmin and delete 'bromine' database if present
Create 'bromine' database
Select the bromine database
Press SQL
Copy and paste everything from bromine.sql to the textfield and press go/submit/whatever
If #3 fails
What? You can't create a file?
If #4 fails
It shouldn't. Redo step 1 and 2