Merge branch 'master' of gitlab.science.ru.nl:mlubbers/ssproject1617
[ssproject1617.git] / testcms-final-anon / config.default.php
1 <?php defined('IN_CMS') or die('No direct access allowed.');
2
3 /*
4 TestCMS - Default configuration
5 */
6 return array(
7 // MySQL database details
8 'database' => array(
9 'host' => '127.0.0.1',
10 'username' => 'root',
11 'password' => '',
12 'name' => 'testcms'
13 ),
14
15 // Application settings
16 'application' => array(
17 // url paths
18 'base_url' => '/',
19 'index_page' => 'index.php',
20
21 // your time zone
22 'timezone' => 'UTC',
23
24 // access to admin
25 'admin_folder' => 'admin',
26
27 // your unique application key used for signing passwords
28 'key' => ''
29 ),
30
31 // Session details
32 'session' => array(
33 'name' => 'testcms',
34 'expire' => 3600,
35 'path' => '/',
36 'domain' => ''
37 ),
38
39 // Error handling
40 'error' => array(
41 'ignore' => array(E_NOTICE, E_USER_NOTICE, E_DEPRECATED, E_USER_DEPRECATED),
42 'detail' => false,
43 'log' => false
44 ),
45
46 // Show database profile
47 'debug' => false
48 );