-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
51 lines (33 loc) · 1.45 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
// Define absolute rootpath
define('ROOTPATH', dirname(__FILE__));
/* DB Configuration */
$_config['db']['server'] = 'localhost';
$_config['db']['dbname'] = 'loveart_cms';
$_config['db']['username'] = 'loveart_cms';
$_config['db']['password'] = '881997';
$_config['db']['charset'] = 'utf8';
$_config['db']['prefix'] = 'love_';
/* DIR Configuration */
$_config['web']['serverdir'] = '/projects/loveart_cms';
$_config['web']['basedir'] = ROOTPATH;
$_config['web']['url'] = 'http://localhost/projects/loveart_cms';
$_config['admin']['url'] = 'http://localhost/projects/loveart_cms/admin';
/* Web configurations */
$_config['web']['settings']['title'] = 'LoveArt Default title';
$_config['web']['settings']['description'] = 'testing website of implementation CMS LoveArt';
$_config['web']['settings']['keywords'] = 'loveart, cms, kapa';
$_config['web']['settings']['author'] = 'Karel Juricka';
$_config['web']['settings']['copyright'] = '2013 (c) LoveArt.cz';
$_config['web']['settings']['theme'] = 'default';
/* Admin configurations */
$_config['admin']['settings']['title'] = 'LoveArt CMS 1.0';
$_config['admin']['settings']['description'] = '';
$_config['admin']['settings']['keywords'] = '';
$_config['admin']['settings']['author'] = '';
$_config['admin']['settings']['copyright'] = '';
$_config['admin']['settings']['theme'] = 'default';
/* Debugger */
$_config['web']['debug'] = false;
$_config['admin']['debug'] = false;
?>