01.
<?php
02.
############################### S T A R T ################################
03.
## Filename config.php ##
04.
## Version 4.8.5 ##
05.
#################################################################################
06.
ob_start();
07.
08.
09.
10.
date_default_timezone_set(
'Europe/Rome'
);
11.
12.
13.
14.
15.
16.
17.
error_reporting
(E_ALL ^ E_NOTICE);
18.
19.
20.
21.
22.
23.
24.
define(
"SERVER_NAME"
,
"test server"
);
25.
26.
27.
28.
29.
$time_start
=
mktime
(00,10,31,04,18,2012);
30.
define(
"COMMENCE"
,
$time_start
);
31.
32.
33.
34.
define(
"TIMEZONE"
,
"7"
);
35.
36.
37.
38.
define(
"LANG"
,
"en"
);
39.
?>