PHP 8.1.33
Preview: common.php Size: 3.97 KB
/home/jambtst2015/www/forum/common.php

<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Minimum Requirement: PHP 4.3.3
*/

/**
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

require($phpbb_root_path . 'includes/startup.' . $phpEx);

if (file_exists($phpbb_root_path . 'config.' . $phpEx))
{
	require($phpbb_root_path . 'config.' . $phpEx);
}

if (!defined('PHPBB_INSTALLED'))
{
	// Redirect the user to the installer
	require($phpbb_root_path . 'includes/functions.' . $phpEx);

	// We have to generate a full HTTP/1.1 header here since we can't guarantee to have any of the information
	// available as used by the redirect function
	$server_name = (!empty($_SERVER['HTTP_HOST'])) ? strtolower($_SERVER['HTTP_HOST']) : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME'));
	$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');
	$secure = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 1 : 0;

	$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
	if (!$script_name)
	{
		$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
	}

	// $phpbb_root_path accounts for redirects from e.g. /adm
	$script_path = trim(dirname($script_name)) . '/' . $phpbb_root_path . 'install/index.' . $phpEx;
	// Replace any number of consecutive backslashes and/or slashes with a single slash
	// (could happen on some proxy setups and/or Windows servers)
	$script_path = preg_replace('#[\\\\/]{2,}#', '/', $script_path);
	// Eliminate . and .. from the path
	$script_path = phpbb_clean_path($script_path);

	$url = (($secure) ? 'https://' : 'http://') . $server_name;

	if ($server_port && (($secure && $server_port <> 443) || (!$secure && $server_port <> 80)))
	{
		// HTTP HOST can carry a port number...
		if (strpos($server_name, ':') === false)
		{
			$url .= ':' . $server_port;
		}
	}

	$url .= $script_path;
	header('Location: ' . $url);
	exit;
}

if (defined('DEBUG_EXTRA'))
{
	$base_memory_usage = 0;
	if (function_exists('memory_get_usage'))
	{
		$base_memory_usage = memory_get_usage();
	}
}

// Load Extensions
// dl() is deprecated and disabled by default as of PHP 5.3.
if (!empty($load_extensions) && function_exists('dl'))
{
	$load_extensions = explode(',', $load_extensions);

	foreach ($load_extensions as $extension)
	{
		@dl(trim($extension));
	}
}

// Include files
require($phpbb_root_path . 'includes/acm/acm_' . $acm_type . '.' . $phpEx);
require($phpbb_root_path . 'includes/cache.' . $phpEx);
require($phpbb_root_path . 'includes/template.' . $phpEx);
require($phpbb_root_path . 'includes/session.' . $phpEx);
require($phpbb_root_path . 'includes/auth.' . $phpEx);

require($phpbb_root_path . 'includes/functions.' . $phpEx);
require($phpbb_root_path . 'includes/functions_content.' . $phpEx);

require($phpbb_root_path . 'includes/constants.' . $phpEx);
require($phpbb_root_path . 'includes/db/' . $dbms . '.' . $phpEx);
require($phpbb_root_path . 'includes/utf/utf_tools.' . $phpEx);

// Set PHP error handler to ours
set_error_handler(defined('PHPBB_MSG_HANDLER') ? PHPBB_MSG_HANDLER : 'msg_handler');

// Instantiate some basic classes
$user		= new user();
$auth		= new auth();
$template	= new template();
$cache		= new cache();
$db			= new $sql_db();

// Connect to DB
$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, defined('PHPBB_DB_NEW_LINK') ? PHPBB_DB_NEW_LINK : false);

// We do not need this any longer, unset for safety purposes
unset($dbpasswd);

// Grab global variables, re-cache if necessary
$config = $cache->obtain_config();

// Add own hook handler
require($phpbb_root_path . 'includes/hooks/index.' . $phpEx);
$phpbb_hook = new phpbb_hook(array('exit_handler', 'phpbb_user_session_handler', 'append_sid', array('template', 'display')));

foreach ($cache->obtain_hooks() as $hook)
{
	@include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx);
}

?>

Directory Contents

Dirs: 11 × Files: 34

Name Size Perms Modified Actions
adm DIR
- drwxr-xr-x 2025-11-03 15:04:05
Edit Download
cache DIR
- drwx------ 2024-12-13 17:11:21
Edit Download
docs DIR
- drwxr-xr-x 2024-12-13 17:11:08
Edit Download
download DIR
- drwxr-xr-x 2024-12-13 17:10:56
Edit Download
files DIR
- drwx------ 2024-12-13 17:10:24
Edit Download
images DIR
- drwxr-xr-x 2024-12-13 17:10:01
Edit Download
includes DIR
- drwxr-xr-x 2025-10-30 23:51:23
Edit Download
- drwxr-xr-x 2025-10-12 15:44:00
Edit Download
language DIR
- drwxr-xr-x 2024-12-13 17:09:28
Edit Download
store DIR
- drwx------ 2024-12-13 17:09:18
Edit Download
styles DIR
- drwxr-xr-x 2024-12-13 17:09:05
Edit Download
3.97 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
387 B lrw------- 2024-11-22 17:53:06
Edit Download
4.41 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
7.44 KB lrw------- 2025-10-10 14:47:18
Edit Download
4.12 KB lrw------- 2025-10-10 14:47:18
Edit Download
34 B lrw------- 2025-10-10 14:47:18
Edit Download
3.95 KB lrw------- 2025-10-10 14:47:18
Edit Download
322 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
116.29 KB lrw-r--r-- 2025-11-04 07:20:01
Edit Download
1.71 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
38.26 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
412 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
997 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
404 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
414 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
680 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
280 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
296 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
325 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
397 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download
23.71 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
60.88 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
10.31 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
59.92 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
7.38 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
43.94 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
187 B lrw------- 2025-11-04 07:19:59
Edit Download
7.97 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
9.56 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
9.49 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
28.75 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
13.59 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
67.55 KB lrw-r--r-- 2024-11-22 17:53:06
Edit Download
625 B lrw-r--r-- 2024-11-22 17:53:06
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).