Update to apache like request logger.
[iDB.git] / preindex.php
blob834c2bad4fb438a560f8b045d3f5af803bdd6b74
1 <?php
2 /*
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the Revised BSD License.
6 This program is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY; without even the implied warranty of
8 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 Revised BSD License for more details.
11 Copyright 2004-2011 iDB Support - http://idb.berlios.de/
12 Copyright 2004-2011 Game Maker 2k - http://gamemaker2k.org/
14 $FileInfo: preindex.php - Last Update: 01/09/2011 SVN 611 - Author: cooldude2k $
16 $pretime = explode(" ", microtime());
17 $utime = $pretime[0];
18 $time = $pretime[1];
19 $starttime = $utime + $time;
20 $File3Name = basename($_SERVER['SCRIPT_NAME']);
21 if ($File3Name=="preindex.php"||$File3Name=="/preindex.php") {
22 header('Location: index.php');
23 exit(); }
24 require('sql.php');
25 if($_GET['act']=="sqldumper"&&$_SESSION['UserGroup']!=$Settings['GuestGroup']&&
26 $GroupInfo['HasAdminCP']=="yes") {
27 if($Settings['sqltype']=="mysql"||$Settings['sqltype']=="mysqli") {
28 require($SettDir['sqldumper'].'mysql.php'); }
29 if($Settings['sqltype']=="pgsql") {
30 require($SettDir['sqldumper'].'pgsql.php'); }
31 if($Settings['sqltype']=="sqlite") {
32 require($SettDir['sqldumper'].'sqlite.php'); }
33 session_write_close(); die(); }
34 if(!isset($checklowview)) {
35 $checklowview = false; }
36 if($checklowview!==false&&$checklowview!==true) {
37 $checklowview = false; }
38 if($_GET['act']=="lofi"||$_GET['act']=="lo-fi"||
39 $_GET['act']=="LoFi"||$_GET['act']=="Lo-Fi"||
40 $_GET['act']=="lores"||$_GET['act']=="lo-res"||
41 $_GET['act']=="LoRes"||$_GET['act']=="Lo-Res"||
42 $_GET['act']=="LowView"||$_GET['act']=="low-view"||
43 $_GET['act']=="Low-View") { $_GET['act'] = "lowview"; }
44 if($_GET['act']!="lowview") {
45 $checklowview = false; }
46 if($Settings['enable_rss']=="on") {
47 if(!isset($_GET['feed'])) { $_GET['feed'] = null; }
48 if($_GET['feed']=="rss"||$_GET['act']=="feed"||
49 $_GET['feed']=="oldrss"||$_GET['feed']=="atom"||
50 $_GET['feed']=="opml"||$_GET['feed']=="opensearch") {
51 $_GET['feedtype'] = $_GET['feed']; }
52 if($_GET['feed']=="rss"||$_GET['act']=="Feed"||
53 $_GET['feed']=="oldrss"||$_GET['feed']=="atom"||
54 $_GET['feed']=="opml"||$_GET['feed']=="opensearch"||
55 $_GET['act']=="feed") {
56 require($SettDir['inc'].'rssfeed.php'); } }
57 if($Settings['output_type']=="htm") {
58 $Settings['output_type'] = "html"; }
59 if($Settings['output_type']=="xhtm") {
60 $Settings['output_type'] = "xhtml"; }
61 if($Settings['output_type']=="xml+htm") {
62 $Settings['output_type'] = "xhtml"; }
63 if($Settings['html_type']=="html5"||
64 $Settings['html_type']=="xhtml5") {
65 require($SettDir['inc'].'html5.php'); }
66 if($Settings['html_type']=="xhtml10") {
67 require($SettDir['inc'].'xhtml10.php'); }
68 if($Settings['html_type']=="xhtml11") {
69 if(stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml")) {
70 $ccstart = "//<![CDATA["; $ccend = "//]]>";
71 require($SettDir['inc'].'xhtml11.php'); } else {
72 if (stristr($_SERVER["HTTP_USER_AGENT"],"W3C_Validator")||
73 stristr($_SERVER["HTTP_USER_AGENT"],"WDG_Validator")||
74 stristr($_SERVER["HTTP_USER_AGENT"],"WDG_SiteValidator")) {
75 $ccstart = "//<![CDATA["; $ccend = "//]]>";
76 require($SettDir['inc'].'xhtml11.php'); } else {
77 $ccstart = "//<!--"; $ccend = "//-->";
78 $Settings['html_type']="xhtml10";
79 $Settings['html_level']="Strict";
80 require($SettDir['inc'].'xhtml10.php'); } } }
81 if($Settings['html_type']!="xhtml10"&&
82 $Settings['html_type']!="xhtml11"&&
83 $Settings['html_type']!="html5"&&
84 $Settings['html_type']!="xhtml5") {
85 $ccstart = "//<!--"; $ccend = "//-->";
86 require($SettDir['inc'].'xhtml10.php'); }