-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfg.php
63 lines (50 loc) · 1.43 KB
/
confg.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
52
53
54
55
56
57
58
59
60
61
62
63
<?PHP
$cfg['dbhost'] = 'localhost';
$cfg['dbname'] = 'florensia';
$cfg['dbuser'] = 'xxx';
$cfg['dbpasswd'] = 'xxx';
$cfg['root'] = "http://localhost/florensia";
$cfg['root_abs'] = "/var/www/florensia";
$cfg['downloads_abs'] = "/var/www/florensia";
$cfg['layer_abs'] = $cfg['root_abs']."/layer";
$cfg['layer_rel'] = $cfg['root']."/layer";
$cfg['pictures_abs'] = $cfg['root_abs']."/pictures";
$cfg['pictures_rel'] = $cfg['root']."/pictures";
$cfg['images_abs'] = $cfg['root_abs']."/images";
$cfg['images_rel'] = $cfg['root']."/images";
$cfg['language_abs'] = $cfg['root_abs']."/language";
$cfg['language_rel'] = $cfg['root']."/language";
$cfg['fonts_abs'] = $cfg['root_abs']."/fonts";
$cfg['signatureurl'] = "http://localhost/florensia/signature.php?sig=";
$cfg['signature_abs'] = $cfg['root_abs']."/signature";
$cfg['signature_rel'] = $cfg['root']."/signature";
$cfg['googleanalytics'] = false;
$cfg['googleadsense'] = false;
//last color is gray for all others
$cfg['maptoolcolors'] = array(
"255,255,0",
"2128,128,0",
"192,192,0",
"123,0,0",
"255,0,0",
"41,41,0",
"0,64,0",
"0,123,0",
"0,255,0",
"0,123,123",
"0,255,223",
"0,12,149",
"0,0,255",
"72,90,255",
"103,33,173",
"138,0,131",
"255,0,242",
"89,68,79",
"192,88,0",
"255,168,88",
"255,255,255",
"176,176,176");
$cfg['forumurl'] = "http://forum.florensia-base.com";
$cfg['forum'] = $cfg['root_abs']."/forum";
$cfg['cache'] = false;
?>