]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - index.php
Allow bold, italics or underlined for numbers
[SourceForge/phpwiki.git] / index.php
1 <?php
2 /*
3  * Copyright 1999-2010 $ThePhpWikiProgrammingTeam
4  * = array(
5  * "Steve Wainstead", "Clifford A. Adams", "Lawrence Akka",
6  * "Scott R. Anderson", "Jon Åslund", "Neil Brown", "Jeff Dairiki",
7  * "Stéphane Gourichon", "Jan Hidders", "Arno Hollosi", "John Jorgensen",
8  * "Antti Kaihola", "Jeremie Kass", "Carsten Klapp", "Marco Milanesi",
9  * "Grant Morgan", "Jan Nieuwenhuizen", "Aredridel Niothke",
10  * "Pablo Roca Rozas", "Sandino Araico Sánchez", "Joel Uckelman",
11  * "Reini Urban", "Marc-Etienne Vargenau", "Joby Walker", "Tim Voght",
12  * "Jochen Kalmbach");
13  *
14  * This file is part of PhpWiki.
15  *
16  * PhpWiki is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 2 of the License, or
19  * (at your option) any later version.
20  *
21  * PhpWiki is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License along
27  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
28  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29  */
30
31 require_once (dirname(__FILE__) . '/lib/prepend.php');
32 require_once(dirname(__FILE__) . '/lib/IniConfig.php');
33 IniConfig(dirname(__FILE__) . "/config/config.ini");
34
35 if (version_compare(PHP_VERSION, '5.2', '<')) {
36     exit(_("Your PHP version is too old. You must have at least PHP 5.2."));
37 }
38
39 ////////////////////////////////////////////////////////////////
40 // PrettyWiki
41 // Check if we were included by some other wiki version
42 // (getimg.php, en, de, wiki, ...) or not.
43 // If the server requested this index.php fire up the code by loading lib/main.php.
44 // Parallel wiki scripts can now simply include /index.php for the
45 // main configuration, extend or redefine some settings and
46 // load lib/main.php by themselves. See the file 'wiki'.
47 // This overcomes the IndexAsConfigProblem.
48 // Generally a simple
49 //   define('VIRTUAL_PATH', $_SERVER['SCRIPT_NAME']);
50 // is enough in the wiki file, plus the action definition in a .htaccess file
51 ////////////////////////////////////////////////////////////////
52
53 // If every page is just empty, comment the if (@is_dir line out,
54 // to force include "lib/main.php".
55 // Without the dir check it might fail for index.php via DirectoryIndex
56 if (@is_dir(SCRIPT_FILENAME) or realpath(SCRIPT_FILENAME) == realpath(__FILE__))
57     include(dirname(__FILE__) . "/lib/main.php");
58
59 // Local Variables:
60 // mode: php
61 // tab-width: 8
62 // c-basic-offset: 4
63 // c-hanging-comment-ender-p: nil
64 // indent-tabs-mode: nil
65 // End: