I've uploaded a site to the live server, imported the database and updated the db connection info in mysite/_config.php but am getting the following error:
SilverStripe Framework requires a $databaseConfig defined.
This appears to come from framework/main.php where it is checking my to make sure my config is defined. Here is my config:
global $databaseConfig;
$databaseConfig = array(
"type" => 'MySQLDatabase',
"server" => 'localhost',
"username" => 'xxxxx',
"password" => 'xxxxx',
"database" => 'xxxxxx',
"path" => '',
);
I published the site in the same manner to one of my servers so the client could check before setting live and it worked with no issues.
Anyone have any ideas what could be going on?
.htaccess
file? – Fleer