5
* @version $Id: common.php,v 1.214 2007/11/18 15:37:17 naderman Exp $
6
* @copyright (c) 2005 phpBB Group
7
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
9
* Minimum Requirement: PHP 4.3.3
14
if (!defined('IN_PHPBB'))
19
$starttime = explode(' ', microtime());
20
$starttime = $starttime[1] + $starttime[0];
22
// Report all errors, except notices
23
error_reporting(E_ALL ^ E_NOTICE);
26
* Remove variables created by register_globals from the global scope
27
* Thanks to Matt Kavanagh
29
function deregister_globals()
42
'phpbb_root_path' => true
45
// Not only will array_merge and array_keys give a warning if
46
// a parameter is not an array, array_merge will actually fail.
47
// So we check if _SESSION has been initialised.
48
if (!isset($_SESSION) || !is_array($_SESSION))
53
// Merge all into one extremely huge array; unset this later
59
array_keys($_SESSION),
64
foreach ($input as $varname)
66
if (isset($not_unset[$varname]))
68
// Hacking attempt. No point in continuing unless it's a COOKIE
69
if ($varname !== 'GLOBALS' || isset($_GET['GLOBALS']) || isset($_POST['GLOBALS']) || isset($_SERVER['GLOBALS']) || isset($_SESSION['GLOBALS']) || isset($_ENV['GLOBALS']) || isset($_FILES['GLOBALS']))
76
while (isset($cookie['GLOBALS']))
78
foreach ($cookie['GLOBALS'] as $registered_var => $value)
80
if (!isset($not_unset[$registered_var]))
82
unset($GLOBALS[$registered_var]);
85
$cookie = &$cookie['GLOBALS'];
90
unset($GLOBALS[$varname]);
96
// If we are on PHP >= 6.0.0 we do not need some code
97
if (version_compare(PHP_VERSION, '6.0.0-dev', '>='))
102
define('STRIP', false);
106
set_magic_quotes_runtime(0);
108
// Be paranoid with passed vars
109
if (@ini_get('register_globals') == '1' || strtolower(@ini_get('register_globals')) == 'on' || !function_exists('ini_get'))
111
deregister_globals();
114
define('STRIP', (get_magic_quotes_gpc()) ? true : false);
117
if (defined('IN_CRON'))
119
$phpbb_root_path = dirname(__FILE__) . DIRECTORY_SEPARATOR;
122
if (!file_exists($phpbb_root_path . 'config.' . $phpEx))
124
die("<p>The config.$phpEx file could not be found.</p><p><a href=\"{$phpbb_root_path}install/index.$phpEx\">Click here to install phpBB</a></p>");
127
require($phpbb_root_path . 'config.' . $phpEx);
129
if (!defined('PHPBB_INSTALLED'))
131
// Redirect the user to the installer
132
// We have to generate a full HTTP/1.1 header here since we can't guarantee to have any of the information
133
// available as used by the redirect function
134
$server_name = (!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME');
135
$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
136
$secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0;
138
$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
141
$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
144
// Replace any number of consecutive backslashes and/or slashes with a single slash
145
// (could happen on some proxy setups and/or Windows servers)
146
$script_path = trim(dirname($script_name)) . '/install/index.' . $phpEx;
147
$script_path = preg_replace('#[\\\\/]{2,}#', '/', $script_path);
149
$url = (($secure) ? 'https://' : 'http://') . $server_name;
151
if ($server_port && (($secure && $server_port <> 443) || (!$secure && $server_port <> 80)))
153
$url .= ':' . $server_port;
156
$url .= $script_path;
157
header('Location: ' . $url);
161
if (defined('DEBUG_EXTRA'))
163
$base_memory_usage = 0;
164
if (function_exists('memory_get_usage'))
166
$base_memory_usage = memory_get_usage();
171
if (!empty($load_extensions))
173
$load_extensions = explode(',', $load_extensions);
175
foreach ($load_extensions as $extension)
177
@dl(trim($extension));
182
require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
183
require($phpbb_root_path . 'includes/cache.' . $phpEx);
184
require($phpbb_root_path . 'includes/template.' . $phpEx);
185
require($phpbb_root_path . 'includes/session.' . $phpEx);
186
require($phpbb_root_path . 'includes/auth.' . $phpEx);
188
require($phpbb_root_path . 'includes/functions.' . $phpEx);
189
require($phpbb_root_path . 'includes/functions_content.' . $phpEx);
191
require($phpbb_root_path . 'includes/constants.' . $phpEx);
192
require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
193
require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);
195
// Set PHP error handler to ours
196
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');
198
// Instantiate some basic classes
201
$template = new template();
202
$cache = new cache();
206
$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, defined('PHPBB_DB_NEW_LINK') ? PHPBB_DB_NEW_LINK : false);
208
// We do not need this any longer, unset for safety purposes
211
// Grab global variables, re-cache if necessary
212
$config = $cache->obtain_config();
214
// Add own hook handler
215
require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);
216
$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display')));
218
foreach ($cache->obtain_hooks() as $hook)
220
@include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx);
b'\\ No newline at end of file'