Merge "FauxRequest: Avoid header leak"
[lhc/web/wiklou.git] / includes / NoLocalSettings.php
1 <?php
2 /**
3 * Display an error page when there is no LocalSettings.php file.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 # bug 30219 : can not use pathinfo() on URLs since slashes do not match
24 $matches = array();
25 $ext = 'php';
26 $path = '/';
27 foreach ( array_filter( explode( '/', $_SERVER['PHP_SELF'] ) ) as $part ) {
28 if ( !preg_match( '/\.(php5?)$/', $part, $matches ) ) {
29 $path .= "$part/";
30 } else {
31 $ext = $matches[1] == 'php5' ? 'php5' : 'php';
32 break;
33 }
34 }
35
36 # Check to see if the installer is running
37 if ( !function_exists( 'session_name' ) ) {
38 $installerStarted = false;
39 } else {
40 session_name( 'mw_installer_session' );
41 $oldReporting = error_reporting( E_ALL & ~E_NOTICE );
42 $success = session_start();
43 error_reporting( $oldReporting );
44 $installerStarted = ( $success && isset( $_SESSION['installData'] ) );
45 }
46
47 $templateParser = new TemplateParser();
48
49 # Render error page if no LocalSettings file can be found
50 try {
51 echo $templateParser->processTemplate(
52 'NoLocalSettings',
53 array(
54 'wgVersion' => ( isset( $wgVersion ) ? $wgVersion : 'VERSION' ),
55 'path' => $path,
56 'ext' => $ext,
57 'localSettingsExists' => file_exists( MW_CONFIG_FILE ),
58 'installerStarted' => $installerStarted
59 )
60 );
61 } catch ( Exception $e ) {
62 echo 'Error: ' . htmlspecialchars( $e->getMessage() );
63 }