The yearly copyright-update commit. 2009, 2010 are now copyrighted on the developer...
[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 if (function_exists('date_default_timezone_set')) {
50         // CFG: TIME-ZONE
51         @date_default_timezone_set('Europe/Berlin');
52 } // END - if
53
54 // CFG: ERROR_REPORTING
55 error_reporting(E_ALL | E_STRICT);
56
57 // CFG: REGISTER-GLOBALS
58 @import_request_variables('');
59
60 // Detect path
61 $PATH = str_replace("\\", '/', substr(dirname(__FILE__), 0, -3));
62
63 // Some very important function includes
64 foreach (array('config','wrapper','inc','stats') as $inc) {
65         include($PATH . 'inc/' . $inc . '-functions.php');
66 } // END - foreach
67
68 // Own functions
69 include($PATH.'inc/functions.php');
70
71 // Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
72 $URL = 'http://' . detectServerName() . str_replace("\\", '/', dirname($_SERVER['PHP_SELF']));
73 while (substr($URL, -1, 1) == '/') { $URL = substr($URL, 0, -1); }
74
75 // Initialize the configuration
76 initConfig();
77
78 // CFG: HOST-URL (without trailing '/' !)
79 setConfigEntry('URL', $URL);
80
81 // CFG: SERVER-PATH
82 setConfigEntry('PATH', $PATH);
83
84 // CFG: VERSION
85 setConfigEntry('VERSION', 'v0.2.1');
86
87 // CFG: AUTHOR
88 setConfigEntry('AUTHOR' , 'Roland H&auml;der');
89
90 // CFG: TITLE
91 setConfigEntry('TITLE', 'Mailer Project');
92
93 // CFG: COPY
94 setConfigEntry('COPY', 'Copyright &copy; 2003 - 2009, by Roland H&auml;der');
95
96 // CFG: CACHE-PATH
97 setConfigEntry('CACHE_PATH', getConfig('PATH') . 'inc/cache/');
98
99 // CFG: STATS-ENABLED (temporary tables, if your database crashs all is gone)
100 setConfigEntry('STATS_ENABLED', 'Y');
101
102 // GLOBAL: DEBUG-TEMPLATE-CACHE
103 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
104
105 // Connect to the MySQL database...
106 loadIncludeOnce('inc/mysql-connect.php');
107
108 // Init stats system
109 initStatsSystem();
110
111 // [EOF]
112 ?>