2012-08-14 06:02:12 +02:00
|
|
|
<?php
|
|
|
|
ob_start();
|
|
|
|
|
|
|
|
define('SS_ENVIRONMENT_TYPE', 'dev');
|
|
|
|
|
|
|
|
/* Database connection */
|
2012-08-14 06:44:32 +02:00
|
|
|
define('SS_DATABASE_CLASS', 'SQLite3Database');
|
|
|
|
define('SS_DATABASE_SERVER', ':memory:');
|
2012-08-14 06:02:12 +02:00
|
|
|
define('SS_DATABASE_USERNAME', 'root');
|
|
|
|
define('SS_DATABASE_PASSWORD', '');
|
|
|
|
define('SS_DATABASE_CHOOSE_NAME', true);
|
|
|
|
|
|
|
|
/* Configure a default username and password to access the CMS on all sites in this environment. */
|
|
|
|
define('SS_DEFAULT_ADMIN_USERNAME', 'username');
|
|
|
|
define('SS_DEFAULT_ADMIN_PASSWORD', 'password');
|
2012-08-14 06:44:32 +02:00
|
|
|
|
|
|
|
$_FILE_TO_URL_MAPPING[dirname(__FILE__)] = 'http://localhost';
|