-
Notifications
You must be signed in to change notification settings - Fork 0
/
config - sample.php
89 lines (45 loc) · 1.5 KB
/
config - sample.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/*
*
* The configuration file of Borno CMS
* You can setting your site configuration from here . You can
* change mysql information , db and prefix information , logkey
* information form this file.
* Logkey is the unique key of your site .
*/
// /* You can get the information form your host provider */ //
$dbconnect= array(
// Database name
'DBNAME' => 'bornocms',//database name
//Database password
'DBPASS' => '',
//Database username
'DBUSER' => 'root',
//Database host
'DBHOST' => 'localhost',
// /* Database prefix */ //
'DBPREFIX' => 'borno_',//Enter your prefix , must be a underline (-) of the end of the prefix
// /* Logkey . It secure user login function */ //
/*
* Every log key must be unique
*
*/
//an unique site log key .
'LOGKEY' => '8d859af1a8d8f74f8bc0e0bef76809cd', /// a custom one
//email field logkey
'LOGKEY_A' => 'ee454aa26b7a9611366ea6b90a6c97f8',/// a custom one
//password field logkey
'LOGKEY_B' => '56147e3fff4888775af313486baaf335',// a custom one
//season logkey
'LOGKEY_C' => '587a9d0ebb8ca9eac1cb6a187ae5b4c3',// a custom one
//logkey logkey
'LOGKEY_D' => '69a2b4a984577f629e7f180948604160',//a custom one
//logkey e // sesion logkey encoding ...
'LOGKEY_E' => 'f16c0f9155c469f9b2291eadf0a75c6f', // a custom one
// /* Site permalink / subfolder */ //
'permalink' => '/bornocmscheck/' // root address
);
//You can also define it
//define("ADMIN_URL","http://localhost/bornocms/admin");
//define("site_address","http://localhost/bornocms");
?>