28if ( ini_get(
'mbstring.func_overload' ) ) {
29 die(
'MediaWiki does not support installations where mbstring.func_overload is non-zero.' );
32# T17461: Make IE8 turn off content sniffing. Everybody else should ignore this
33# We're adding it here so that it's *always* set, even for alternate entry
34# points and when $wgOut gets disabled or overridden.
35header(
'X-Content-Type-Options: nosniff' );
46# Valid web server entry point, enable includes.
47# Please don't move this line to includes/Defines.php. This line essentially
48# defines a valid entry point. If you put it in includes/Defines.php, then
49# any script that includes it becomes an entry point, thereby defeating
51define(
'MEDIAWIKI',
true );
53# Full path to working directory.
54# Makes it possible to for example to have effective exclude path in apc.
55# __DIR__ breaks symlinked includes, but realpath() returns false
56# if we don't have permissions on parent directories.
57$IP = getenv(
'MW_INSTALL_PATH' );
59 $IP = realpath(
'.' ) ?: dirname( __DIR__ );
62require_once
"$IP/includes/PreConfigSetup.php";
64# Assert that composer dependencies were successfully loaded
65# Purposely no leading \ due to it breaking HHVM RepoAuthorative mode
66# PHP works fine with both versions
68if ( !interface_exists(
'Psr\Log\LoggerInterface' ) ) {
70 'MediaWiki requires the <a href="https://github.com/php-fig/log">PSR-3 logging ' .
71 "library</a> to be present. This library is not embedded directly in MediaWiki's " .
72 "git repository and must be installed separately by the end user.\n\n" .
73 'Please see <a href="https://www.mediawiki.org/wiki/Download_from_Git' .
74 '#Fetch_external_libraries">mediawiki.org</a> for help on installing ' .
75 'the required components.'
78 trigger_error( $message, E_USER_ERROR );
82# Install a header callback
83MediaWiki\HeaderCallback::register();
85if ( defined(
'MW_CONFIG_CALLBACK' ) ) {
86 # Use a callback function to configure MediaWiki
89 if ( !defined(
'MW_CONFIG_FILE' ) ) {
90 define(
'MW_CONFIG_FILE',
"$IP/LocalSettings.php" );
93 # LocalSettings.php is the per site customization file. If it does not exist
94 # the wiki installer needs to be launched or the generated file uploaded to
95 # the root wiki directory. Give a hint, if it is not readable by the server.
96 if ( !is_readable( MW_CONFIG_FILE ) ) {
97 require_once
"$IP/includes/NoLocalSettings.php";
101 # Include site settings. $IP may be changed (hopefully before the AutoLoader is invoked)
102 require_once MW_CONFIG_FILE;
105# Initialise output buffering
106# Check that there is no previous output or previously set up buffers, because
107# that would cause us to potentially mix gzip and non-gzip output, creating a
109if ( ob_get_level() == 0 ) {
110 require_once
"$IP/includes/OutputHandler.php";
111 ob_start(
'wfOutputHandler' );
114require_once
"$IP/includes/Setup.php";
116# Multiple DBs or commits might be used; keep the request as transactional as possible
117if ( isset( $_SERVER[
'REQUEST_METHOD'] ) && $_SERVER[
'REQUEST_METHOD'] ===
'POST' ) {
118 ignore_user_abort(
true );
121if ( !defined(
'MW_API' ) &&
124 header(
'Cache-Control: no-cache' );
125 header(
'Content-Type: text/html; charset=utf-8' );
127 $error =
wfMessage(
'nonwrite-api-promise-error' )->escaped();
131<head><meta charset=
"UTF-8" /></head>
138 header(
'Content-Length: ' . strlen( $content ) );
float $wgRequestTime
Request start time as fractional seconds since epoch.
static header( $code)
Output an HTTP status code header.
static getMain()
Static methods.
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "<div ...>$1</div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services