From 10dca7fa208a490c7dc5d7e99262baf6b6aa6f5a Mon Sep 17 00:00:00 2001 From: ischommer Date: Sun, 1 Feb 2009 07:45:27 +0000 Subject: [PATCH] ... git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.3@71151 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- mysite/_config_example.php | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 mysite/_config_example.php diff --git a/mysite/_config_example.php b/mysite/_config_example.php new file mode 100644 index 0000000..54d96b5 --- /dev/null +++ b/mysite/_config_example.php @@ -0,0 +1,30 @@ + "MySQLDatabase", + "server" => "localhost", + "username" => "root", + "password" => "", + "database" => "SS_mysite", +); + +// 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('mysite'); + +Security::setDefaultAdmin('admin', 'password'); + +?> \ No newline at end of file