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 ( !defined( 'MEDIAWIKI' ) ) {
25 die( "NoLocalSettings.php is not a valid MediaWiki entry point\n" );
28 if ( !isset( $wgVersion ) ) {
29 $wgVersion = 'VERSION';
32 # bug 30219 : can not use pathinfo() on URLs since slashes do not match
36 foreach( array_filter( explode( '/', $_SERVER['PHP_SELF'] ) ) as $part ) {
37 if( !preg_match( '/\.(php5?)$/', $part, $matches ) ) {
40 $ext = $matches[1] == 'php5' ?
'php5' : 'php';
44 # Check to see if the installer is running
45 if ( !function_exists( 'session_name' ) ) {
46 $installerStarted = false;
48 session_name( 'mw_installer_session' );
49 $oldReporting = error_reporting( E_ALL
& ~E_NOTICE
);
50 $success = session_start();
51 error_reporting( $oldReporting );
52 $installerStarted = ( $success && isset( $_SESSION['installData'] ) );
56 <html lang
="en" dir
="ltr">
58 <meta charset
="UTF-8" />
59 <title
>MediaWiki
<?php
echo htmlspecialchars( $wgVersion ) ?
></title
>
60 <style media
='screen'>
63 background
-color
: #fff;
64 font
-family
: sans
-serif
;
74 <img src
="<?php echo htmlspecialchars( $path ) ?>skins/common/images/mediawiki.png" alt
='The MediaWiki logo' />
76 <h1
>MediaWiki
<?php
echo htmlspecialchars( $wgVersion ) ?
></h1
>
78 <p
>LocalSettings
.php not found
.</p
>
81 if ( $installerStarted ) {
82 echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> complete the installation</a> and download LocalSettings.php.";
84 echo "Please <a href=\"" . htmlspecialchars( $path ) . "mw-config/index." . htmlspecialchars( $ext ) . "\"> set up the wiki</a> first.";