MediaWiki REL1_32
PHPVersionCheck.php
Go to the documentation of this file.
1<?php
21// phpcs:disable Generic.Arrays.DisallowLongArraySyntax,PSR2.Classes.PropertyDeclaration,MediaWiki.Usage.DirUsage
22// phpcs:disable Squiz.Scope.MemberVarScope.Missing,Squiz.Scope.MethodScope.Missing
30 /* @var string The number of the MediaWiki version used */
31 var $mwVersion = '1.32';
33 'mb_substr' => 'mbstring',
34 'xml_parser_create' => 'xml',
35 'ctype_digit' => 'ctype',
36 'json_decode' => 'json',
37 'iconv' => 'iconv',
38 'mime_content_type' => 'fileinfo',
39 );
40
49 var $entryPoint = null;
50
60 $this->entryPoint = $entryPoint;
61 }
62
79 function getPHPInfo( $impl = false ) {
80 if (
81 ( defined( 'HHVM_VERSION' ) && $impl !== 'PHP' ) ||
82 $impl === 'HHVM'
83 ) {
84 return array(
85 'implementation' => 'HHVM',
86 'version' => defined( 'HHVM_VERSION' ) ? HHVM_VERSION : 'undefined',
87 'vendor' => 'Facebook',
88 'upstreamSupported' => '3.18.5',
89 'minSupported' => '3.18.5',
90 'upgradeURL' => 'https://docs.hhvm.com/hhvm/installation/introduction',
91 );
92 }
93 return array(
94 'implementation' => 'PHP',
95 'version' => PHP_VERSION,
96 'vendor' => 'the PHP Group',
97 'upstreamSupported' => '5.6.0',
98 'minSupported' => '7.0.13',
99 'upgradeURL' => 'https://secure.php.net/downloads.php',
100 );
101 }
102
107 $phpInfo = $this->getPHPInfo();
108 $minimumVersion = $phpInfo['minSupported'];
109 $otherInfo = $this->getPHPInfo( $phpInfo['implementation'] === 'HHVM' ? 'PHP' : 'HHVM' );
110 if (
111 !function_exists( 'version_compare' )
112 || version_compare( $phpInfo['version'], $minimumVersion ) < 0
113 ) {
114 $shortText = "MediaWiki $this->mwVersion requires at least {$phpInfo['implementation']}"
115 . " version $minimumVersion or {$otherInfo['implementation']} version "
116 . "{$otherInfo['minSupported']}, you are using {$phpInfo['implementation']} "
117 . "{$phpInfo['version']}.";
118
119 $longText = "Error: You might be using an older {$phpInfo['implementation']} version "
120 . "({$phpInfo['implementation']} {$phpInfo['version']}). \n"
121 . "MediaWiki $this->mwVersion needs {$phpInfo['implementation']}"
122 . " $minimumVersion or higher or {$otherInfo['implementation']} version "
123 . "{$otherInfo['minSupported']}.\n\nCheck if you have a"
124 . " newer php executable with a different name.\n\n";
125
126 // phpcs:disable Generic.Files.LineLength
127 $longHtml = <<<HTML
128 Please consider <a href="{$phpInfo['upgradeURL']}">upgrading your copy of
129 {$phpInfo['implementation']}</a>.
130 {$phpInfo['implementation']} versions less than {$phpInfo['upstreamSupported']} are no
131 longer supported by {$phpInfo['vendor']} and will not receive
132 security or bugfix updates.
133 </p>
134 <p>
135 If for some reason you are unable to upgrade your {$phpInfo['implementation']} version,
136 you will need to <a href="https://www.mediawiki.org/wiki/Download">download</a> an
137 older version of MediaWiki from our website.
138 See our <a href="https://www.mediawiki.org/wiki/Compatibility#PHP">compatibility page</a>
139 for details of which versions are compatible with prior versions of {$phpInfo['implementation']}.
140HTML;
141 // phpcs:enable Generic.Files.LineLength
142 $this->triggerError(
143 "Supported {$phpInfo['implementation']} versions",
144 $shortText,
145 $longText,
146 $longHtml
147 );
148 }
149 }
150
155 if ( !file_exists( dirname( __FILE__ ) . '/../vendor/autoload.php' ) ) {
156 $shortText = "Installing some external dependencies (e.g. via composer) is required.";
157
158 $longText = "Error: You are missing some external dependencies. \n"
159 . "MediaWiki now also has some external dependencies that need to be installed\n"
160 . "via composer or from a separate git repo. Please see\n"
161 . "https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries\n"
162 . "for help on installing the required components.";
163
164 // phpcs:disable Generic.Files.LineLength
165 $longHtml = <<<HTML
166 MediaWiki now also has some external dependencies that need to be installed via
167 composer or from a separate git repo. Please see
168 <a href="https://www.mediawiki.org/wiki/Download_from_Git#Fetch_external_libraries">mediawiki.org</a>
169 for help on installing the required components.
170HTML;
171 // phpcs:enable Generic.Files.LineLength
172
173 $this->triggerError( 'External dependencies', $shortText, $longText, $longHtml );
174 }
175 }
176
181 $missingExtensions = array();
182 foreach ( $this->functionsExtensionsMapping as $function => $extension ) {
183 if ( !function_exists( $function ) ) {
184 $missingExtensions[] = $extension;
185 }
186 }
187
188 if ( $missingExtensions ) {
189 $shortText = "Installing some PHP extensions is required.";
190
191 $missingExtText = '';
192 $missingExtHtml = '';
193 $baseUrl = 'https://secure.php.net';
194 foreach ( $missingExtensions as $ext ) {
195 $missingExtText .= " * $ext <$baseUrl/$ext>\n";
196 $missingExtHtml .= "<li><b>$ext</b> "
197 . "(<a href=\"$baseUrl/$ext\">more information</a>)</li>";
198 }
199
200 $cliText = "Error: Missing one or more required components of PHP.\n"
201 . "You are missing a required extension to PHP that MediaWiki needs.\n"
202 . "Please install:\n" . $missingExtText;
203
204 $longHtml = <<<HTML
205 You are missing a required extension to PHP that MediaWiki
206 requires to run. Please install:
207 <ul>
208 $missingExtHtml
209 </ul>
210HTML;
211
212 $this->triggerError( 'Required components', $shortText, $cliText, $longHtml );
213 }
214 }
215
219 function outputHTMLHeader() {
220 $protocol = isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.0';
221
222 header( "$protocol 500 MediaWiki configuration Error" );
223 // Don't cache error pages! They cause no end of trouble...
224 header( 'Cache-control: none' );
225 header( 'Pragma: no-cache' );
226 }
227
236 function getIndexErrorOutput( $title, $longHtml, $shortText ) {
237 $pathinfo = pathinfo( $_SERVER['SCRIPT_NAME'] );
238 if ( $this->entryPoint == 'mw-config/index.php' ) {
239 $dirname = dirname( $pathinfo['dirname'] );
240 } else {
241 $dirname = $pathinfo['dirname'];
242 }
243 $encLogo =
244 htmlspecialchars( str_replace( '//', '/', $dirname . '/' ) .
245 'resources/assets/mediawiki.png' );
246 $shortHtml = htmlspecialchars( $shortText );
247
248 header( 'Content-type: text/html; charset=UTF-8' );
249
250 $finalOutput = <<<HTML
251<!DOCTYPE html>
252<html lang="en" dir="ltr">
253 <head>
254 <meta charset="UTF-8" />
255 <title>MediaWiki {$this->mwVersion}</title>
256 <style media='screen'>
257 body {
258 color: #000;
259 background-color: #fff;
260 font-family: sans-serif;
261 padding: 2em;
262 text-align: center;
263 }
264 p, img, h1, h2, ul {
265 text-align: left;
266 margin: 0.5em 0 1em;
267 }
268 h1 {
269 font-size: 120%;
270 }
271 h2 {
272 font-size: 110%;
273 }
274 </style>
275 </head>
276 <body>
277 <img src="{$encLogo}" alt='The MediaWiki logo' />
278 <h1>MediaWiki {$this->mwVersion} internal error</h1>
279 <div class='error'>
280 <p>
281 {$shortHtml}
282 </p>
283 <h2>{$title}</h2>
284 <p>
285 {$longHtml}
286 </p>
287 </div>
288 </body>
289</html>
290HTML;
291
292 return $finalOutput;
293 }
294
308 function triggerError( $title, $shortText, $longText, $longHtml ) {
309 switch ( $this->entryPoint ) {
310 case 'cli':
311 $finalOutput = $longText;
312 break;
313 case 'index.php':
314 case 'mw-config/index.php':
315 $this->outputHTMLHeader();
316 $finalOutput = $this->getIndexErrorOutput( $title, $longHtml, $shortText );
317 break;
318 case 'load.php':
319 $this->outputHTMLHeader();
320 $finalOutput = "/* $shortText */";
321 break;
322 default:
323 $this->outputHTMLHeader();
324 // Handle everything that's not index.php
325 $finalOutput = $shortText;
326 }
327
328 echo "$finalOutput\n";
329 die( 1 );
330 }
331}
332
340function wfEntryPointCheck( $entryPoint ) {
341 $phpVersionCheck = new PHPVersionCheck();
342 $phpVersionCheck->setEntryPoint( $entryPoint );
343 $phpVersionCheck->checkRequiredPHPVersion();
344 $phpVersionCheck->checkVendorExistence();
345 $phpVersionCheck->checkExtensionExistence();
346}
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable or merely the Work and Derivative Works thereof Contribution shall mean any work of including the original version of the Work and any modifications or additions to that Work or Derivative Works that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner For the purposes of this submitted means any form of or written communication sent to the Licensor or its including but not limited to communication on electronic mailing source code control and issue tracking systems that are managed by
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation and configuration files Object form shall mean any form resulting from mechanical transformation or translation of a Source including but not limited to compiled object generated and conversions to other media types Work shall mean the work of whether in Source or Object made available under the as indicated by a copyright notice that is included in or attached to the whether in Source or Object that is based or other modifications as a an original work of authorship For the purposes of this Derivative Works shall not include works that remain separable from
shown</td >< td > a href
in the sidebar</td >< td > font color
target page
</td >< td > &</td >< td > t want your writing to be edited mercilessly and redistributed at will
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
wfEntryPointCheck( $entryPoint)
Check php version and that external dependencies are installed, and display an informative error if e...
triggerError( $title, $shortText, $longText, $longHtml)
Display something vaguely comprehensible in the event of a totally unrecoverable error.
outputHTMLHeader()
Output headers that prevents error pages to be cached.
string $entryPoint
Which entry point we are protecting.
checkExtensionExistence()
Displays an error, if a PHP extension does not exist.
checkRequiredPHPVersion()
Displays an error, if the installed php version does not meet the minimum requirement.
checkVendorExistence()
Displays an error, if the vendor/autoload.php file could not be found.
getPHPInfo( $impl=false)
Returns the version of the installed php implementation.
getIndexErrorOutput( $title, $longHtml, $shortText)
Returns an error page, which is suitable for output to the end user via a web browser.
setEntryPoint( $entryPoint)
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types as usual *javascript user provided javascript code *json simple implementation for use by etc *css user provided css code *text plain text In PHP
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types are
Some information about database access in MediaWiki By Tim January Database layout For information about the MediaWiki database such as a description of the tables and their please see
Definition database.txt:18
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these updates(as a Java servelet could)
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if that
Definition deferred.txt:13
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
Definition globals.txt:10
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2683
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going on
Definition hooks.txt:86
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to copy
Definition LICENSE.txt:11
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Prior to version
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
A helper class for throttling authentication attempts.
title
Bar style
if(!is_readable( $file)) $ext
Definition router.php:55