More usage of EL
[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 // CFG: ERROR_REPORTING
50 error_reporting(E_ALL | E_STRICT);
51
52 // CFG: REGISTER-GLOBALS
53 @import_request_variables('');
54
55 // Detect path
56 $PATH = str_replace("\\", '/', substr(dirname(__FILE__), 0, -3));
57
58 // Some very important function includes
59 foreach (array('config','wrapper','template','module','inc','stats') as $inc) {
60         include($PATH . 'inc/' . $inc . '-functions.php');
61 } // END - foreach
62
63 // Own functions
64 include($PATH.'inc/functions.php');
65
66 // Auto-detection... (patched by "Stelzi" aka. profi-concept, thanks again!)
67 $URL = 'http://' . detectServerName() . str_replace("\\", '/', dirname($_SERVER['PHP_SELF']));
68 while (substr($URL, -1, 1) == '/') { $URL = substr($URL, 0, -1); }
69
70 // Initialize the configuration
71 initConfig();
72
73 // CFG: HOST-URL (without trailing '/' !)
74 setConfigEntry('URL', $URL);
75
76 // CFG: SERVER-PATH
77 setConfigEntry('PATH', $PATH);
78
79 // CFG: VERSION
80 setConfigEntry('VERSION', 'v0.2.1');
81
82 // CFG: AUTHOR
83 setConfigEntry('AUTHOR' , 'Roland H&auml;der');
84
85 // CFG: TITLE
86 setConfigEntry('TITLE', 'Mailer Project');
87
88 // CFG: COPY
89 setConfigEntry('COPY', 'Copyright &copy; 2003 - 2009, by Roland H&auml;der,<br />2009, 2010 by Mailer Developer Team');
90
91 // CFG: CACHE-PATH
92 setConfigEntry('CACHE_PATH', getConfig('PATH') . 'inc/cache/');
93
94 // CFG: STATS-ENABLED (This setting is overwritten by ext-other; at least version 0.2.6)
95 setConfigEntry('stats_enabled', 'N');
96
97 // GLOBAL: DEBUG-TEMPLATE-CACHE
98 setConfigEntry('DEBUG_TEMPLATE_CACHE', 'N');
99
100 // Connect to the MySQL database...
101 loadIncludeOnce('inc/mysql-connect.php');
102
103 // Init stats system
104 initStatsSystem();
105
106 // [EOF]
107 ?>