-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·218 lines (190 loc) · 6 KB
/
index.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
/**
* ProcessWire Bootstrap
*
* This file may be used to bootstrap either the http web accessible
* version, or the command line client version of ProcessWire.
*
* Note: if you happen to change any directory references in here, please
* do so after you have installed the site, as the installer is not informed
* of any changes made in this file.
*
* ProcessWire 2.x
* Copyright (C) 2014 by Ryan Cramer
* Licensed under GNU/GPL v2, see LICENSE.TXT
*
* http://processwire.com
*
* @version 2.4
*
*/
define("PROCESSWIRE", 240);
/**
* Build the ProcessWire configuration
*
* @return Config
*
*/
function ProcessWireBootConfig() {
/*
* Define installation paths and urls
*
*/
$rootPath = dirname(__FILE__);
if(DIRECTORY_SEPARATOR != '/') $rootPath = str_replace(DIRECTORY_SEPARATOR, '/', $rootPath);
if(isset($_SERVER['HTTP_HOST'])) {
$httpHost = strtolower($_SERVER['HTTP_HOST']);
// when serving pages from a web server
$rootURL = rtrim(dirname($_SERVER['SCRIPT_NAME']), "/\\") . '/';
// check if we're being included from another script and adjust the rootPath accordingly
$sf = empty($_SERVER['SCRIPT_FILENAME']) ? '' : dirname(realpath($_SERVER['SCRIPT_FILENAME']));
$f = dirname(realpath(__FILE__));
if($sf && $sf != $f && strpos($sf, $f) === 0) {
$x = rtrim(substr($sf, strlen($f)), '/');
$rootURL = substr($rootURL, 0, strlen($rootURL) - strlen($x));
}
unset($sf, $f, $x);
} else {
// when included from another app or command line script
$httpHost = '';
$rootURL = '/';
}
/*
* Allow for an optional /index.config.php file that can point to a different site configuration per domain/host.
*
*/
$siteDir = 'site';
$indexConfigFile = $rootPath . "/index.config.php";
if(is_file($indexConfigFile)) {
// optional config file is present in root
@include($indexConfigFile);
$hostConfig = function_exists("ProcessWireHostSiteConfig") ? ProcessWireHostSiteConfig() : array();
if($httpHost && isset($hostConfig[$httpHost])) $siteDir = $hostConfig[$httpHost];
else if(isset($hostConfig['*'])) $siteDir = $hostConfig['*']; // default override
}
// other default directories
$wireDir = 'wire';
$coreDir = "$wireDir/core";
$assetsDir = "$siteDir/assets";
$adminTplDir = 'templates-admin';
/*
* Setup ProcessWire class autoloads
*
*/
require("$rootPath/$coreDir/ProcessWire.php");
/*
* Setup configuration data and default paths/urls
*
*/
$config = new Config();
$config->urls = new Paths($rootURL);
$config->urls->wire = "$wireDir/";
$config->urls->site = "$siteDir/";
$config->urls->modules = "$wireDir/modules/";
$config->urls->siteModules = "$siteDir/modules/";
$config->urls->core = "$coreDir/";
$config->urls->assets = "$assetsDir/";
$config->urls->cache = "$assetsDir/cache/";
$config->urls->logs = "$assetsDir/logs/";
$config->urls->files = "$assetsDir/files/";
$config->urls->tmp = "$assetsDir/tmp/";
$config->urls->templates = "$siteDir/templates/";
$config->urls->adminTemplates = is_dir("$siteDir/$adminTplDir") ? "$siteDir/$adminTplDir/" : "$wireDir/$adminTplDir/";
$config->paths = clone $config->urls;
$config->paths->root = $rootPath . '/';
$config->paths->sessions = $config->paths->assets . "sessions/";
/*
* Styles and scripts are CSS and JS files, as used by the admin application.
* But reserved here if needed by other apps and templates.
*
*/
$config->styles = new FilenameArray();
$config->scripts = new FilenameArray();
/*
* Include system and user-specified configuration options
*
*/
include("$rootPath/$wireDir/config.php");
$configFile = "$rootPath/$siteDir/config.php";
$configFileDev = "$rootPath/$siteDir/config-dev.php";
@include(is_file($configFileDev) ? $configFileDev : $configFile);
/*
* If debug mode is on then echo all errors, if not then disable all error reporting
*
*/
if($config->debug) {
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 1);
} else {
error_reporting(0);
ini_set('display_errors', 0);
}
/*
* If PW2 is not installed, go to the installer
*
*/
if(!$config->dbName && is_file("./install.php") && strtolower($_SERVER['REQUEST_URI']) == strtolower($rootURL)) {
require("./install.php");
exit(0);
}
/*
* Prepare any PHP ini_set options
*
*/
session_name($config->sessionName);
ini_set('session.use_cookies', true);
ini_set('session.use_only_cookies', 1);
ini_set('session.cookie_httponly', 1);
ini_set("session.gc_maxlifetime", $config->sessionExpireSeconds);
if(ini_get('session.save_handler') == 'files') ini_set("session.save_path", rtrim($config->paths->sessions, '/'));
return $config;
}
/*
* If you include ProcessWire's index.php from another script, or from a
* command-line script, the $wire variable is your connection to the API.
*
*/
$process = null;
$wire = null;
/**
* Build the ProcessWire configuration
*
*/
$config = ProcessWireBootConfig();
/*
* Load and execute ProcessWire
*
*/
try {
/*
* Bootstrap ProcessWire's core and make the API available with $wire
*
*/
$wire = new ProcessWire($config);
/*
* If we're not being called from another shell script or PHP page, then run the PageView process
*
*/
if(isset($_SERVER['HTTP_HOST']) && realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) {
$process = $wire->modules->get("ProcessPageView");
$wire->setFuel('process', $process);
echo $process->execute();
$process->finished();
} else {
/*
* Some other script included this for non-http use or access to the API without
* rendering any pages at this time. The $wire var may be used to access
* the API after including this file.
*
*/
}
} catch(Exception $e) {
/*
* Formulate error message and send to the error handler
*
*/
if($process) $process->failed($e);
$errorMessage = "Exception: " . $e->getMessage() . " (in " . $e->getFile() . " line " . $e->getLine() . ")";
if($config->debug || ($wire && $wire->user && $wire->user->isSuperuser())) $errorMessage .= "\n\n" . $e->getTraceAsString();
trigger_error($errorMessage, E_USER_ERROR);
}