For reference here is my mysite/_config.php file
<?php
global $project;
$project = 'mysite';
global $databaseConfig;
$databaseConfig = array(
"type" => "MySQLDatabase",
"server" => "localhost",
"username" => "root",
"password" => "******",
"database" => "******",
);
// Remove the 'Help' button in the CMS
CMSMenu::remove_menu_item('Help');
// Sites running on the following servers will be
// run in development mode. See
// http://doc.silverstripe.com/doku.php?id=devmode
// for a description of what dev mode does.
Director::set_dev_servers(array(
'localhost',
'127.0.0.1',
));
// This line set's the current theme. More themes can be
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('default');
// The next three lines customizes the admin graphics
LeftAndMain::setApplicationName("Website CMS");
LeftAndMain::setLogo(".../themes/cms/logo.gif", "position: relative; left: 5px; margin-top: -3px; padding-left: 50px;");
LeftAndMain::set_loading_image("../themes/cms/loading.gif");
?>