Re-added default timezone, let's pray it can be set later on
[mailer.git] / inc / config-global.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/03/2009 *
4  * ===================                          Last change: 04/03/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : config-global.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Global configuration                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Globale Konfiguration                            *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 /************************************************************************
46  *      PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM!        *
47  ************************************************************************/
48
49 // Proper function exists?
50 if (function_exists('date_default_timezone_set')) {
51         // Set default timezone to Europe/Berlin (because I'm from Germany)
52         @date_default_timezone_set('Europe/Berlin');
53 } // END - if
54
55 // CFG: ERROR_REPORTING
56 error_reporting(E_ALL | E_STRICT);
57
58 // CFG: REGISTER-GLOBALS
59 @import_request_variables('');
60
61 // Detect path
62 $PATH = str_replace("\\", '/', substr(dirname(__FILE__), 0, -3));
63
64 // Some very important function includes
65 foreach (array('config','wrapper','template','module','inc','stats') as $inc) {
66         include($PATH . 'inc/' . $inc . '-functions.php');
67 } // END - foreach
68
69 // Own functions
70 include($PATH.'inc/functions.php');
71
72 // Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
73 $URL = 'http://' . detectServerName() . str_replace("\\", '/', dirname($_SERVER['PHP_SELF']));
74 while (substr($URL, -1, 1) == '/') { $URL = substr($URL, 0, -1); }
75
76 // Initialize the configuration
77 initConfig();
78
79 // CFG: HOST-URL (without trailing '/' !)
80 setConfigEntry('URL', $URL);
81
82 // CFG: SERVER-PATH
83 setConfigEntry('PATH', $PATH);
84
85 // CFG: VERSION
86 setConfigEntry('VERSION', 'v0.2.1');
87
88 // CFG: AUTHOR
89 setConfigEntry('AUTHOR' , 'Roland H&auml;der');
90
91 // CFG: TITLE
92 setConfigEntry('TITLE', 'Mailer Project');
93
94 // CFG: COPY
95 setConfigEntry('COPY', 'Copyright &copy; 2003 - 2009, by Roland H&auml;der,<br />2009, 2010 by Mailer Developer Team');
96
97 // CFG: CACHE-PATH
98 setConfigEntry('CACHE_PATH', getConfig('PATH') . 'inc/cache/');
99
100 // CFG: STATS-ENABLED (This setting is overwritten by ext-other; at least version 0.2.6)
101 setConfigEntry('stats_enabled', 'N');
102
103 // GLOBAL: DEBUG-TEMPLATE-CACHE
104 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
105
106 // Connect to the MySQL database...
107 loadIncludeOnce('inc/mysql-connect.php');
108
109 // Init stats system
110 initStatsSystem();
111
112 // [EOF]
113 ?>