-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
60 lines (58 loc) · 1.82 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
// Copyright by: Manuel
// Support: www.ilch.de
// if(file_exists('install.php') || file_exists('install.sql')) die('Installationsdateien noch vorhanden! Bitte erst löschen!');
ob_start();
define('main', true);
define('DEBUG', true);
define('SCRIPT_START_TIME', microtime(true));
define('AJAXCALL', isset($_GET['ajax']) and $_GET['ajax'] == 'true');
// Konfiguration zur Anzeige von Fehlern
// Auf http://www.php.net/manual/de/function.error-reporting.php sind die verfügbaren Modi aufgelistet
// Seit php-5.3 ist eine Angabe der TimeZone Pflicht
if (version_compare(phpversion(), '5.3') != - 1) {
if (E_ALL > E_DEPRECATED) {
@error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED);
} else {
@error_reporting(E_ALL ^ E_NOTICE);
}
date_default_timezone_set('Europe/Berlin');
} else {
@error_reporting(E_ALL ^ E_NOTICE);
}
// header('Content-Type: text/html;charset=UTF-8');
@ini_set('display_errors', 'On');
// Session starten
session_name('sid');
session_start();
// Datenbankverbindung aufbauen und Funktionen und Klassen laden
require_once('include/includes/config.php');
require_once('include/includes/loader.php');
// Allgemeiner Konfig-Array
$allgAr = getAllgAr();
/* ENTWICKLUNGSVERSION SQL UPDATES */
require_once('update/update.php');
// Menu, Nutzerverwaltung und Seitenstatistik laden
$menu = new menu();
$m = $menu->get_complete();
user_identification($m);
// Sprachdateien oeffnen
load_global_lang();
load_modul_lang();
// Ajaxreload für Boxen
design::ajax_boxload();
site_statistic();
// Wartungsmodus
if ($allgAr['wartung'] == 1) {
if (is_admin()) {
@define('DEBUG', true);
debug ('Wartungsmodus aktiv !');
} else {
die ($allgAr['wartungstext']);
}
}
// Modul oeffnen
require_once('include/contents/' . $menu->get_url());
// Datenbank schließen
db_close();
debug_out();