-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.php
192 lines (167 loc) · 5.95 KB
/
admin.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<?php
/**
* ExpressionEngine - by EllisLab
*
* @package ExpressionEngine
* @author EllisLab Dev Team
* @copyright Copyright (c) 2003 - 2015, EllisLab, Inc.
* @license http://ellislab.com/expressionengine/user-guide/license.html
* @link http://ellislab.com
* @since Version 2.0
*/
/*
* --------------------------------------------------------------------
* System Path
* --------------------------------------------------------------------
*
* The following variable contains the server path to your
* ExpressionEngine "system" folder. By default the folder is named
* "system" but it can be renamed or moved for increased security.
* Indicate the new name and/or path here. The path can be relative
* or it can be a full server path.
*
* http://ellislab.com/expressionengine/user-guide/installation/best_practices.html
*
*/
$system_path = './system';
/*
* --------------------------------------------------------------------
* Multiple Site Manager
* --------------------------------------------------------------------
*
* Uncomment the following variables if you are using the Multiple
* Site Manager: http://ellislab.com/expressionengine/user-guide/cp/sites
*
* The variables set the Short Name of the site this admin.php file
* will log into, and its URL.
*
*/
// $assign_to_config['site_name'] = 'domain2_short_name';
// $assign_to_config['cp_url'] = 'http://domain2.com/admin.php';
/*
* --------------------------------------------------------------------
* Error Reporting
* --------------------------------------------------------------------
*
* PHP and database errors are normally displayed dynamically based
* on the authorization level of each user accessing your site.
* This variable allows the error reporting system to be overridden,
* which can be useful for low level debugging during site development,
* since errors happening before a user is authenticated will not normally
* be shown. Options:
*
* $debug = 0; Default setting. Errors shown based on authorization level
*
* $debug = 1; All errors shown regardless of authorization
*
* NOTE: Enabling this override can have security implications.
* Enable it only if you have a good reason to.
*
*/
$debug = 0;
/*
* --------------------------------------------------------------------
* END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
* --------------------------------------------------------------------
*/
define('MASKED_CP', TRUE);
/*
* --------------------------------------------------------------------
* Mandatory config overrides
* --------------------------------------------------------------------
*/
$assign_to_config['subclass_prefix'] = 'EE_';
$assign_to_config['directory_trigger'] = 'D';
$assign_to_config['controller_trigger'] = 'C';
$assign_to_config['function_trigger'] = 'M';
/*
* --------------------------------------------------------------------
* Resolve the system path for increased reliability
* --------------------------------------------------------------------
*/
if ($system_path == '')
{
$system_path = pathinfo(__FILE__, PATHINFO_DIRNAME);
}
if (realpath($system_path) !== FALSE)
{
$system_path = realpath($system_path).'/';
}
// ensure there's a trailing slash
$system_path = rtrim($system_path, '/').'/';
/*
* --------------------------------------------------------------------
* Now that we know the path, set the main constants
* --------------------------------------------------------------------
*/
// The PHP file extension
define('EXT', '.php');
// The name of THIS file
define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));
// Path to the system folder
define('BASEPATH', str_replace("\\", "/", $system_path.'codeigniter/system/'));
// Path to the front controller (this file)
define('FCPATH', str_replace(SELF, '', __FILE__));
// Name of the "system folder"
define('SYSDIR', trim(strrchr(trim(str_replace("\\", "/", $system_path), '/'), '/'), '/'));
// The $debug value as a constant for global access
define('DEBUG', $debug); unset($debug);
/*
* --------------------------------------------------------------------
* EE Control Panel Constants
* -------------------------------------------------------------------
*
* If the "installer" folder exists we'll load the installation
* wizard. Otherwise, we'll load the CP.
*
*/
// Is the installation folder present?
if (is_dir($system_path.'installer/'))
{
// We need a different subclass prefix when we run the installer,
// because it has its own Config class extension with some
// specific functions. Setting a unique prefix lets us load the
// main Config class extension without a naming conflict.
$assign_to_config['subclass_prefix'] = 'Installer_';
// This allows the installer application to be inside our normal
// EE application directory.
define('APPPATH', $system_path.'installer/');
define('EE_APPPATH', $system_path.'expressionengine/');
}
else
{
define('APPPATH', $system_path.'expressionengine/');
}
// The control panel access constant ensures the CP will be invoked.
define('REQ', 'CP');
/*
* --------------------------------------------------------------------
* Set the error reporting level
* --------------------------------------------------------------------
*/
if (DEBUG == 1)
{
error_reporting(E_ALL);
@ini_set('display_errors', 1);
}
else
{
error_reporting(0);
}
/*
*---------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
*---------------------------------------------------------------
*
* And away we go...
*
*/
// Is the system path correct?
if ( ! file_exists(BASEPATH.'core/CodeIgniter'.EXT))
{
header('HTTP/1.1 503 Service Unavailable.', TRUE, '503');
exit("Your system folder path does not appear to be set correctly. Please open the following file and correct this: ".pathinfo(__FILE__, PATHINFO_BASENAME));
}
require_once BASEPATH.'core/CodeIgniter'.EXT;
/* End of file index.php */
/* Location: ./system/index.php */