21# T17461: Make IE8 turn off content sniffing. Everybody else should ignore this
22# We're adding it here so that it's *always* set, even for alternate entry
23# points and when $wgOut gets disabled or overridden.
24header(
'X-Content-Type-Options: nosniff' );
26# Valid web server entry point, enable includes.
27# Please don't move this line to includes/Defines.php. This line essentially
28# defines a valid entry point. If you put it in includes/Defines.php, then
29# any script that includes it becomes an entry point, thereby defeating
31define(
'MEDIAWIKI',
true );
38 # LocalSettings.php is the per-site customization file. If it does not exist
39 # the wiki installer needs to be launched or the generated file uploaded to
40 # the root wiki directory. Give a hint,
if it is not readable by the server.
41 require_once __DIR__ .
'/Output/NoLocalSettings.php';
45require_once __DIR__ .
'/BootstrapHelperFunctions.php';
49if ( !defined(
'MW_CONFIG_CALLBACK' ) ) {
51 if ( !is_readable( MW_CONFIG_FILE ) ) {
52 define(
'MW_CONFIG_CALLBACK',
'wfWebStartNoLocalSettings' );
60 if ( ob_get_level() == 0 ) {
66 ob_start( OutputHandler::handle( ... ) );
71if ( !defined(
'MW_SETUP_CALLBACK' ) ) {
72 define(
'MW_SETUP_CALLBACK',
'wfWebStartSetup' );
75require_once __DIR__ .
'/Setup.php';
85 DeferredUpdates::addCallableUpdate(
static function () {
86 MediaWikiServices::getInstance()->getPingback()->run();
90# Multiple DBs or commits might be used; keep the request as transactional as possible
91if ( isset( $_SERVER[
'REQUEST_METHOD'] ) && $_SERVER[
'REQUEST_METHOD'] ===
'POST' ) {
92 ignore_user_abort(
true );
95if ( !defined(
'MW_API' ) && !defined(
'MW_REST_API' ) &&
96 RequestContext::getMain()->
getRequest()->getHeader(
'Promise-Non-Write-API-Action' )
98 header(
'Cache-Control: no-cache' );
99 header(
'Content-Type: text/html; charset=utf-8' );
100 HttpStatus::header( 400 );
101 $errorHtml =
wfMessage(
'nonwrite-api-promise-error' )
102 ->useDatabase(
false )
103 ->inContentLanguage()
108<head><meta charset=
"UTF-8" /><meta name=
"color-scheme" content=
"light dark" /></head>
115 header(
'Content-Length: ' . strlen( $content ) );
wfDetectLocalSettingsFile(?string $installationPath=null)
Decide and remember where to load LocalSettings from.
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
if(!defined('MW_CONFIG_CALLBACK')) wfWebStartSetup(SettingsBuilder $settings)
if(!defined('MW_SETUP_CALLBACK'))
wfWebStartNoLocalSettings(SettingsBuilder $settings)
Group all the pieces relevant to the context of a request into one instance.
$wgPingback
Config variable stub for the Pingback setting, for use by phpdoc and IDEs.