79use Psr\Log\LoggerInterface;
80use Wikimedia\RequestTimeout\RequestTimeout;
90if ( !defined(
'MEDIAWIKI' ) ) {
96if ( ini_get(
'mbstring.func_overload' ) ) {
97 die(
'MediaWiki does not support installations where mbstring.func_overload is non-zero.' );
103if ( !defined(
'MW_ENTRY_POINT' ) ) {
109 define(
'MW_ENTRY_POINT',
'unknown' );
126require_once MW_INSTALL_PATH .
'/includes/AutoLoader.php';
127require_once MW_INSTALL_PATH .
'/includes/Defines.php';
130if ( !interface_exists( LoggerInterface::class ) ) {
132 'MediaWiki requires the <a href="https://github.com/php-fig/log">PSR-3 logging ' .
133 "library</a> to be present. This library is not embedded directly in MediaWiki's " .
134 "git repository and must be installed separately by the end user.\n\n" .
135 'Please see the <a href="https://www.mediawiki.org/wiki/Download_from_Git' .
136 '#Fetch_external_libraries">instructions for installing libraries</a> on mediawiki.org ' .
137 'for help on installing the required components.'
140 trigger_error( $message, E_USER_ERROR );
158if ( defined(
'MW_USE_CONFIG_SCHEMA_CLASS' ) ) {
167require_once MW_INSTALL_PATH .
'/includes/GlobalFunctions.php';
169HeaderCallback::register();
173mb_internal_encoding(
'UTF-8' );
182 MainConfigNames::BaseDirectory => MW_INSTALL_PATH,
183 MainConfigNames::ExtensionDirectory => MW_INSTALL_PATH .
'/extensions',
184 MainConfigNames::StyleDirectory => MW_INSTALL_PATH .
'/skins',
185 MainConfigNames::ServiceWiringFiles => [ MW_INSTALL_PATH .
'/includes/ServiceWiring.php' ],
194if ( !isset( $GLOBALS[
'wgScopeTest'] ) || $GLOBALS[
'wgScopeTest'] !==
$wgScopeTest ) {
195 foreach (
$wgSettings->getConfigSchema()->getDefinedKeys() as $key ) {
205 if ( defined(
'MW_CONFIG_CALLBACK' ) ) {
210 if ( getenv(
'MW_USE_LOCAL_SETTINGS_LOADER' ) ) {
214 $localSettingsLoader->loadLocalSettingsFile( MW_CONFIG_FILE );
215 unset( $localSettingsLoader );
217 if ( str_ends_with( MW_CONFIG_FILE,
'.php' ) ) {
220 require_once MW_CONFIG_FILE;
235if (
$wgSettings->getConfig()->get( MainConfigNames::WikiFarmSettingsDirectory ) ) {
237 $wikiFarmSettingsLoader->loadWikiFarmSettings();
238 unset( $wikiFarmSettingsLoader );
251if ( defined(
'MW_SETUP_CALLBACK' ) ) {
267require __DIR__ .
'/SetupDynamicConfig.php';
269if ( defined(
'MW_AUTOLOAD_TEST_CLASSES' ) ) {
270 require_once __DIR__ .
'/../tests/common/TestsAutoLoader.php';
275 '$wgBaseDirectory must not be modified in settings files! ' .
276 'Use the MW_INSTALL_PATH environment variable to override the installation root directory.'
288if ( defined(
'MW_AUTOLOAD_TEST_CLASSES' ) ) {
289 ExtensionRegistry::getInstance()->setLoadTestClassesAndNamespaces(
true );
292ExtensionRegistry::getInstance()->setSettingsBuilder(
$wgSettings );
293ExtensionRegistry::getInstance()->loadFromQueue();
295ExtensionRegistry::getInstance()->finish();
302if ( defined(
'MW_FINAL_SETUP_CALLBACK' ) ) {
303 call_user_func( MW_FINAL_SETUP_CALLBACK,
$wgSettings );
317putenv(
"LC_ALL=" . setlocale( LC_ALL,
'C.UTF-8',
'C' ) );
327MediaWikiServices::allowGlobalInstance();
331define(
'MW_SERVICE_BOOTSTRAP_COMPLETE', 1 );
334if ( !defined(
'MW_PHPUNIT_TEST' ) ) {
346 '$wgServer must be set in LocalSettings.php. ' .
347 'See <a href="https://www.mediawiki.org/wiki/Manual:$wgServer">' .
348 'https://www.mediawiki.org/wiki/Manual:$wgServer</a>.'
359 MediaWikiServices::getInstance()->getHookContainer(),
367 $wgCanonicalServer = MediaWikiServices::getInstance()->getUrlUtils()->getCanonicalServer();
372 wfWarn(
'$wgServerName should be derived from $wgCanonicalServer, '
373 .
'not customized. Overwriting $wgServerName.' );
392 wfWarn(
'Secure login was enabled on a server that only supports '
393 .
'HTTP or HTTPS. Disabling secure login.' );
403 MediaWikiServices::getInstance()->getDBLoadBalancer()->setTableAliases(
423$wgRequest = RequestContext::getMain()->getRequest();
426if (
$wgRequest->getCookie(
'UseDC',
'' ) ===
'master' ) {
430 MediaWikiServices::getInstance()->getMainWANObjectCache()->useInterimHoldOffCaching(
false );
434(
static function () {
437 $logger = LoggerFactory::getInstance(
'wfDebug' );
439 $self = $_SERVER[
'PHP_SELF'] ??
'';
440 $logger->debug(
"\n\nStart command line script $self" );
442 $debug =
"\n\nStart request {$wgRequest->getMethod()} {$wgRequest->getRequestURL()}\n";
443 $debug .=
"IP: " .
$wgRequest->getIP() .
"\n";
444 $debug .=
"HTTP HEADERS:\n";
445 foreach (
$wgRequest->getAllHeaders() as $name => $value ) {
446 $debug .=
"$name: $value\n";
448 $debug .=
"(end headers)";
449 $logger->debug( $debug );
454(
new HookRunner( MediaWikiServices::getInstance()->getHookContainer() ) )->onSetupAfterCache();
476 HeaderCallback::warnIfHeadersSent();
482 if ( !defined(
'MW_NO_SESSION_HANDLER' ) ) {
483 MediaWiki\Session\PHPSessionHandler::install(
484 MediaWiki\Session\SessionManager::singleton()
488 $contLang = MediaWikiServices::getInstance()->getContentLanguage();
492 $session = MediaWiki\Session\SessionManager::getGlobalSession();
493 }
catch (
MediaWiki\Session\SessionOverflowException $ex ) {
497 foreach ( $ex->getSessionInfos() as $info ) {
498 $list[] = $info->getProvider()->describe( $contLang );
500 $list = $contLang->listToText( $list );
502 Message::newFromKey(
'sessionmanager-tie', $list )->inLanguage( $contLang )
508 if ( $session->isPersistent() ) {
513 if (
MediaWiki\Session\PHPSessionHandler::isEnabled() &&
514 ( $session->isPersistent() || $session->shouldRememberUser() ) &&
515 session_id() !== $session->getId()
518 if ( session_id() !==
'' ) {
519 wfDebugLog(
'session',
'PHP session {old_id} was already started, changing to {new_id}',
'all', [
520 'old_id' => session_id(),
521 'new_id' => $session->getId(),
523 session_write_close();
525 session_id( $session->getId() );
533 if ( !defined(
'MW_NO_SESSION_HANDLER' ) ) {
534 MediaWiki\Session\PHPSessionHandler::install(
535 MediaWiki\Session\SessionManager::singleton()
549register_shutdown_function(
static function () {
550 StubGlobalUser::$destructorDeprecationDisarmed =
true;
561$wgOut = RequestContext::getMain()->getOutput();
576 call_user_func( $func );
583 $sessionUser = MediaWiki\Session\SessionManager::getGlobalSession()->getUser();
584 if ( $sessionUser->getId() === 0 &&
585 MediaWikiServices::getInstance()->getUserNameUtils()->isValid( $sessionUser->getName() )
587 MediaWikiServices::getInstance()->getAuthManager()->autoCreateUser(
589 MediaWiki\Auth\AuthManager::AUTOCREATE_SOURCE_SESSION,
595 unset( $sessionUser );
606 DeferredUpdates::addCallableUpdate(
static function () {
607 MediaWikiServices::getInstance()->getPingback()->run();
613 $logger = LoggerFactory::getInstance(
'Settings' );
615 $logger->warning( $msg );
628 MediaWiki\Session\SessionManager::singleton()->logPotentialSessionLeakage();
wfDetectLocalSettingsFile(?string $installationPath=null)
Decide and remember where to load LocalSettings from.
wfDetectInstallPath()
Decide and remember where mediawiki is installed.
const MW_VERSION
The running version of MediaWiki.
wfTempDir()
Tries to get the system directory for temporary files.
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
wfMemoryLimit( $newLimit)
Raise PHP's memory limit (if needed).
wfIniGetBool( $setting)
Safety wrapper around ini_get() for boolean settings.
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
if(!defined( 'MEDIAWIKI')) if(ini_get('mbstring.func_overload')) if(!defined( 'MW_ENTRY_POINT')) global $IP
Environment checks.
if(defined( 'MW_SETUP_CALLBACK')) $dynamicDefaults
Customization point after most things are loaded (constants, functions, classes, LocalSettings.
if(!defined('MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli') if(MW_ENTRY_POINT !=='cli' && $wgPingback $settingsWarnings)
if( $wgCanonicalServer===false) $wgVirtualRestConfig['global']['domain']
global $wgInitialSessionId
if( $wgServer===false) global $wgHooks
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgLang
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgOut
$wgConf
$wgConf hold the site configuration.
if( $wgServerName !==false) $wgServerName
if(!interface_exists(LoggerInterface::class)) $wgCommandLineMode
Pre-config setup: Before loading LocalSettings.php.
if(!defined( 'MW_NO_SESSION') &&MW_ENTRY_POINT !=='cli' $wgTitle
global $wgFullyInitialised
global $wgExtensionFunctions
Abort the web request with a custom HTML string that will represent the entire response.
Show an error that looks like an HTTP server error.
Group all the pieces relevant to the context of a request into one instance.
A class containing constants representing the names of configuration variables.
This class contains schema declarations for all configuration variables known to MediaWiki core.
static init(array $profilerConf)
$wgMemoryLimit
Config variable stub for the MemoryLimit setting, for use by phpdoc and IDEs.
$wgEmergencyContact
Config variable stub for the EmergencyContact setting, for use by phpdoc and IDEs.
$wgSharedTables
Config variable stub for the SharedTables setting, for use by phpdoc and IDEs.
$wgSessionName
Config variable stub for the SessionName setting, for use by phpdoc and IDEs.
$wgLogExceptionBacktrace
Config variable stub for the LogExceptionBacktrace setting, for use by phpdoc and IDEs.
$wgTmpDirectory
Config variable stub for the TmpDirectory setting, for use by phpdoc and IDEs.
$wgNoReplyAddress
Config variable stub for the NoReplyAddress setting, for use by phpdoc and IDEs.
$wgProfiler
Config variable stub for the Profiler setting, for use by phpdoc and IDEs.
$wgBaseDirectory
Config variable stub for the BaseDirectory setting, for use by phpdoc and IDEs.
$wgSecureLogin
Config variable stub for the SecureLogin setting, for use by phpdoc and IDEs.
$wgLocaltimezone
Config variable stub for the Localtimezone setting, for use by phpdoc and IDEs.
$wgShowExceptionDetails
Config variable stub for the ShowExceptionDetails setting, for use by phpdoc and IDEs.
$wgRequestTimeLimit
Config variable stub for the RequestTimeLimit setting, for use by phpdoc and IDEs.
$wgSharedDB
Config variable stub for the SharedDB setting, for use by phpdoc and IDEs.
$wgCanonicalServer
Config variable stub for the CanonicalServer setting, for use by phpdoc and IDEs.
$wgServer
Config variable stub for the Server setting, for use by phpdoc and IDEs.
$wgPropagateErrors
Config variable stub for the PropagateErrors setting, for use by phpdoc and IDEs.
$wgSharedSchema
Config variable stub for the SharedSchema setting, for use by phpdoc and IDEs.
$wgPasswordSender
Config variable stub for the PasswordSender setting, for use by phpdoc and IDEs.
$wgPingback
Config variable stub for the Pingback setting, for use by phpdoc and IDEs.
$wgCookiePrefix
Config variable stub for the CookiePrefix setting, for use by phpdoc and IDEs.
$wgSharedPrefix
Config variable stub for the SharedPrefix setting, for use by phpdoc and IDEs.
$wgPHPSessionHandling
Config variable stub for the PHPSessionHandling setting, for use by phpdoc and IDEs.