3 * Check PHP Version, as well as for composer dependencies in entry points,
4 * and display something vaguely comprehensible in the event of a totally
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
26 * Check php version and that external dependencies are installed, and
27 * display an informative error if either condition is not satisfied.
29 * @note Since we can't rely on anything, the minimum PHP versions and MW current
30 * version are hardcoded here
32 function wfEntryPointCheck( $entryPoint ) {
34 $minimumVersionPHP = '5.3.3';
35 $phpVersion = PHP_VERSION
;
37 if ( !function_exists( 'version_compare' )
38 ||
version_compare( $phpVersion, $minimumVersionPHP ) < 0
40 wfPHPVersionError( $entryPoint, $mwVersion, $minimumVersionPHP, $phpVersion );
43 // @codingStandardsIgnoreStart MediaWiki.Usage.DirUsage.FunctionFound
44 if ( !file_exists( dirname( __FILE__
) . '/../vendor/autoload.php' ) ) {
45 // @codingStandardsIgnoreEnd
46 wfMissingVendorError( $entryPoint, $mwVersion );
51 * Display something vaguely comprehensible in the event of a totally unrecoverable error.
52 * Does not assume access to *anything*; no globals, no autoloader, no database, no localisation.
53 * Safe for PHP4 (and putting this here means that WebStart.php and GlobalSettings.php
54 * no longer need to be).
56 * Calling this function kills execution immediately.
58 * @param string $type Which entry point we are protecting. One of:
62 * - mw-config/index.php
64 * @param string $mwVersion The number of the MediaWiki version used
65 * @param string $title HTML code to be put within an <h2> tag
66 * @param string $shortText
67 * @param string $longText
68 * @param string $longHtml
70 function wfGenericError( $type, $mwVersion, $title, $shortText, $longText, $longHtml ) {
71 $protocol = isset( $_SERVER['SERVER_PROTOCOL'] ) ?
$_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0';
73 if ( $type == 'cli' ) {
74 $finalOutput = $longText;
76 header( "$protocol 500 MediaWiki configuration Error" );
77 // Don't cache error pages! They cause no end of trouble...
78 header( 'Cache-control: none' );
79 header( 'Pragma: no-cache' );
81 if ( $type == 'index.php' ||
$type == 'mw-config/index.php' ) {
82 $pathinfo = pathinfo( $_SERVER['SCRIPT_NAME'] );
83 if ( $type == 'mw-config/index.php' ) {
84 $dirname = dirname( $pathinfo['dirname'] );
86 $dirname = $pathinfo['dirname'];
88 $encLogo = htmlspecialchars(
89 str_replace( '//', '/', $dirname . '/' ) .
90 'resources/assets/mediawiki.png'
92 $shortHtml = htmlspecialchars( $shortText );
94 header( 'Content-type: text/html; charset=UTF-8' );
96 $finalOutput = <<<HTML
98 <html lang="en" dir="ltr">
100 <meta charset="UTF-8" />
101 <title>MediaWiki {$mwVersion}</title>
102 <style media='screen'>
105 background-color: #fff;
106 font-family: sans-serif;
123 <img src="{$encLogo}" alt='The MediaWiki logo' />
124 <h1>MediaWiki {$mwVersion} internal error</h1>
137 // Handle everything that's not index.php
139 // So nothing thinks this is JS or CSS
140 $finalOutput = ( $type == 'load.php' ) ?
"/* $shortText */" : $shortText;
143 echo "$finalOutput\n";
148 * Display an error for the minimum PHP version requirement not being satisfied.
150 * @param string $type See wfGenericError
151 * @param string $mwVersion See wfGenericError
152 * @param string $minimumVersionPHP The minimum PHP version supported by MediaWiki
153 * @param string $phpVersion The current PHP version
155 function wfPHPVersionError( $type, $mwVersion, $minimumVersionPHP, $phpVersion ) {
156 $shortText = "MediaWiki $mwVersion requires at least "
157 . "PHP version $minimumVersionPHP, you are using PHP $phpVersion.";
159 $longText = "Error: You might be using on older PHP version. \n"
160 . "MediaWiki $mwVersion needs PHP $minimumVersionPHP or higher.\n\n"
161 . "Check if you have a newer php executable with a different name, such as php5.\n\n";
164 Please consider <a href="http://www.php.net/downloads.php">upgrading your copy of PHP</a>.
165 PHP versions less than 5.3.0 are no longer supported by the PHP Group and will not receive
166 security or bugfix updates.
169 If for some reason you are unable to upgrade your PHP version, you will need to
170 <a href="https://www.mediawiki.org/wiki/Download">download</a> an older version
171 of MediaWiki from our website. See our
172 <a href="https://www.mediawiki.org/wiki/Compatibility#PHP">compatibility page</a>
173 for details of which versions are compatible with prior versions of PHP.
175 wfGenericError( $type, $mwVersion, 'Supported PHP versions', $shortText, $longText, $longHtml );
179 * Display an error for the vendor/autoload.php file not being found.
181 * @param string $type See wfGenericError
182 * @param string $mwVersion See wfGenericError
184 function wfMissingVendorError( $type, $mwVersion ) {
185 $shortText = "Installing some external dependencies (e.g. via composer) is required.";
187 $longText = "Error: You are missing some external dependencies. \n"
188 . "MediaWiki now also has some external dependencies that need to be installed\n"
189 . "via composer or from a separate git repo. Please see\n"
190 . "https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries\n"
191 . "for help on installing the required components.";
193 // @codingStandardsIgnoreStart Generic.Files.LineLength
195 MediaWiki now also has some external dependencies that need to be installed via
196 composer or from a separate git repo. Please see
197 <a href="https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries">mediawiki.org</a>
198 for help on installing the required components.
200 // @codingStandardsIgnoreEnd
202 wfGenericError( $type, $mwVersion, 'External dependencies', $shortText, $longText, $longHtml );