-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php
129 lines (125 loc) · 2.36 KB
/
config.inc.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?php
/**
* @author Rahul Kadyan <[email protected]>
* @version version 1.0
*/
namespace xDec;
/**
* Defines `the application` status. If false then `the application` is down.
*
* @name DISABLED
* @since version 1.0
*
*/
define('DISABLED', false);
/**
* Path to root directory of `the application`
* @name BASE
* @since version 1.0
*
*/
define('BASE', dirname(__FILE__) . '/');
/**
* Path to core library of `the application`
* @name CORE
* @since version 1.0
*
*/
define('CORE', BASE . 'core/');
/**
* Path to static files and front end controller of `the application`
* @name CONTENT
* @since version 1.0
*
*/
define('CONTENT', BASE . 'content/');
/**
* Path to database modal classes of the `the application`
* @name MODAL
* @since version 1.0
*
*/
define('MODAL', BASE . 'modal/');
/**
* Path to working directory of `the application` with respect to the hosted root directory
* @name DIR
* @since version 1.0
*
*/
define('DIR', '/technothlon.techniche.org');
/**
* Path to cache directory of `the application` with respect to the hosted root directory
* @name CACHE
* @since version 1.0
*/
define('CACHE', BASE . 'cache/');
/**
* MySQL Database server host
* @name DB_HOST
* @since version 1.0
*
*/
define('DB_HOST', 'localhost');
/**
* MySQL Database user
* @name DB_USER
* @since version 1.0
*
*/
define('DB_USER', 'root');
/**
* MySQL Database password
* @name DB_PASS
* @since version 1.0
*
*/
define('DB_PASS', 'rootx');
/**
* MySQL Database name
* @name DB_NAME
* @since version 1.0
*
*/
define('DB_NAME', 'prototype');
/**
* MySQL Database Server connection port
* @name DB_PORT
* @since version 1.0
*
*/
define('DB_PORT', 3306);
/**
* Enable/Disable database access to `the application`
* @name DB_ENABLED
* @since version 1.0
*
*/
define('DB_ENABLED', true);
/**
* Enable/Disable database query logging
* @name LOG_DB_QUERY
* @since version 1.0
*
*/
define('LOG_DB_QUERY', true);
/**
* Secret key for encrypting cookies and other data. 8 to 16 character string.
* @name SECRET_KEY
* @since version 1.0
*
*/
define('SECRET_KEY', '');
/**
* Title of `the application`
* @name SITE_NAME
* @since version 1.0
*
*/
define('SITE_NAME', 'Technothlon');
/**
* Description of `the application`. Published in meta tag of html.
* @name SITE_META
* @since version 1.0
*
*/
define('SITE_META', 'Inspiring Young minds.....');