X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=index.php;h=0e9676da299d5ced433e66db82b0c455dc73bde2;hb=c5b413565930fe08f4d1ee315a5dd3941005c284;hp=2a36bcaaeadf3550bc9496b81804c68d1352d750;hpb=ae035e1d2733624706f244c4a19ebaa99d4545e8;p=lhc%2Fweb%2Fwiklou.git diff --git a/index.php b/index.php index 2a36bcaaea..0e9676da29 100644 --- a/index.php +++ b/index.php @@ -1,111 +1,59 @@ $GLOBALS overwrite vulnerability'); +# Bail on old versions of PHP. Pretty much every other file in the codebase +# has structures (try/catch, foo()->bar(), etc etc) which throw parse errors in +# PHP 4. Setup.php and ObjectCache.php have structures invalid in PHP 5.0 and +# 5.1, respectively. +if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.3.2' ) < 0 ) { + // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+ + require( dirname( __FILE__ ) . '/includes/PHPVersionError.php' ); + wfPHPVersionError( 'index.php' ); } -# Valid web server entry point, enable includes. -# Please don't move this line to includes/Defines.php. This line essentially defines -# a valid entry point. If you put it in includes/Defines.php, then any script that includes -# it becomes an entry point, thereby defeating its purpose. -define( 'MEDIAWIKI', true ); -require_once( './includes/Defines.php' ); - -if( !file_exists( 'LocalSettings.php' ) ) { - $IP = "."; - require_once( 'includes/DefaultSettings.php' ); # used for printing the version -?> - - - - MediaWiki <?php echo $wgVersion ?> - - - - - The MediaWiki logo - -

MediaWiki

-
- config/LocalSettings.php to the parent directory." ); - } else { - echo( "Please setup the wiki first." ); - } - ?> - -
- - -getVal( 'action', 'view' ); -$title = $wgRequest->getVal( 'title' ); - -$wgTitle = $mediaWiki->checkInitialQueries( $title,$action,$wgOut, $wgRequest, $wgContLang ); -if ($wgTitle == NULL) { - unset( $wgTitle ); -} - -wfProfileOut( 'main-misc-setup' ); - -# Setting global variables in mediaWiki -$mediaWiki->setVal( "Server", $wgServer ); -$mediaWiki->setVal( "DisableInternalSearch", $wgDisableInternalSearch ); -$mediaWiki->setVal( "action", $action ); -$mediaWiki->setVal( "SquidMaxage", $wgSquidMaxage ); -$mediaWiki->setVal( "EnableDublinCoreRdf", $wgEnableDublinCoreRdf ); -$mediaWiki->setVal( "EnableCreativeCommonsRdf", $wgEnableCreativeCommonsRdf ); -$mediaWiki->setVal( "CommandLineMode", $wgCommandLineMode ); -$mediaWiki->setVal( "UseExternalEditor", $wgUseExternalEditor ); -$mediaWiki->setVal( "DisabledActions", $wgDisabledActions ); - -$wgArticle = $mediaWiki->initialize ( $wgTitle, $wgOut, $wgUser, $wgRequest ); -$mediaWiki->finalCleanup ( $wgDeferredUpdateList, $wgLoadBalancer, $wgOut ); - -# Not sure when $wgPostCommitUpdateList gets set, so I keep this separate from finalCleanup -$mediaWiki->doUpdates( $wgPostCommitUpdateList ); - -$mediaWiki->restInPeace( $wgLoadBalancer ); -?> +$mediaWiki->run();