aboutsummaryrefslogtreecommitdiff
path: root/header.inc.php
blob: f94ce0d6becd6c083859ce7337b17661ff473a97 (plain)
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
<?php
if(!file_exists(dirname(__FILE__) .'/config.inc.php')) {
	die("Please, create the 'config.inc.php' file. You can copy the 'config.inc.php.example' file.");
}

// First requirements part (before debug management)
require_once(dirname(__FILE__) .'/config.inc.php');
require_once(dirname(__FILE__) .'/constants.inc.php'); // some constants are based on variables from config file


// Debug Management using constants
if(DEBUG_MODE) {
	ini_set('display_errors', '1');
	ini_set('mysql.trace_mode', '1');
	error_reporting(E_ALL);
	//error_reporting(E_ALL^E_NOTICE);
} else {
	ini_set('display_errors', '0');
	ini_set('mysql.trace_mode', '0');
	error_reporting(0);
}


// Second requirements part which could display bugs (must come after debug management)
require_once(dirname(__FILE__) .'/services/servicefactory.php');
require_once(dirname(__FILE__) .'/functions.inc.php');


session_start();

?>