3 * Template used when there is no LocalSettings.php file.
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.
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.
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
24 if ( !isset( $wgVersion ) ) {
25 $wgVersion = 'VERSION';
28 # bug 30219 : can not use pathinfo() on URLs since slashes do not match
32 foreach( array_filter( explode( '/', $_SERVER['PHP_SELF'] ) ) as $part ) {
33 if( !preg_match( '/\.(php5?)$/', $part, $matches ) ) {
36 $ext = $matches[1] == 'php5' ?
'php5' : 'php';
40 # Check to see if the installer is running
41 if ( !function_exists( 'session_name' ) ) {
42 $installerStarted = false;
44 session_name( 'mw_installer_session' );
45 $oldReporting = error_reporting( E_ALL
& ~E_NOTICE
);
46 $success = session_start();
47 error_reporting( $oldReporting );
48 $installerStarted = ( $success && isset( $_SESSION['installData'] ) );
51 <!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
52 <html xmlns
='http://www.w3.org/1999/xhtml' lang
='en'>
54 <title
>MediaWiki
<?php
echo htmlspecialchars( $wgVersion ) ?
></title
>
55 <meta http
-equiv
='Content-Type' content
='text/html; charset=utf-8' />
56 <style type
='text/css' media
='screen'>
59 background
-color
: #fff;
60 font
-family
: sans
-serif
;
70 <img src
="<?php echo htmlspecialchars( $path ) ?>skins/common/images/mediawiki.png" alt
='The MediaWiki logo' />
72 <h1
>MediaWiki
<?php
echo htmlspecialchars( $wgVersion ) ?
></h1
>
74 <p
>LocalSettings
.php not found
.</p
>
77 if ( $installerStarted ) {
78 echo( "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> complete the installation</a> and download LocalSettings.php." );
80 echo( "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> set up the wiki</a> first." );