Migration of stelzi's commit 1022 with some changes so we have a nicer code. See...
[mailer.git] / inc / load_config.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/04/2009 *
4  * ===============                              Last change: 04/04/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load_config.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Loader for configuration                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Lader fuer 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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } // END - if
44
45 // Set some config entries which is required for installation phase
46 setConfigEntry('OUTPUT_MODE' , 'render');
47 setConfigEntry('WRITE_FOOTER', 'Y');
48 setConfigEntry('_DB_TYPE'    , 'mysql3');
49
50 // Mark configuration as NOT loaded which is the default
51 $GLOBALS['config_local_loaded'] = false;
52
53 // Is the local configuration there?
54 if (isIncludeReadable('inc/cache/config-local.php')) {
55         // Then load it
56         loadIncludeOnce('inc/cache/config-local.php');
57
58         // Mark configuration as loaded
59         $GLOBALS['config_local_loaded'] = true;
60 } elseif (isInstalling()) {
61         // Set some essential constants
62         // @TODO Rewrite them to avoid this else block
63         define('MAIN_TITLE', 'Your mail-exchanger title');
64         define('SLOGAN'    , 'Your cool slogan here');
65         define('WEBMASTER' , 'you@some-hoster.tld.invalid');
66
67         // Set output mode here
68         setConfigEntry('OUTPUT_MODE', 'render');
69 } else {
70         // Problem in application detected
71         debug_report_bug('Wether we are not installing nor config-local.php is created!');
72 }
73
74 // Check if the user setups his MySQL stuff...
75 if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!REQUEST_ISSET_GET('installing')) && (isInstalled())) {
76         // No login entered and outside installation mode
77         OUTPUT_HTML('<strong>{--LANG_WARNING--}:</strong> ');
78         if (isInstalled()) {
79                 // You have changed my configuration file!
80                 app_die(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}');
81         } else {
82                 // Please run the installation script (maybe again)
83                 app_die(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}');
84         }
85 } elseif ((!isInstalling()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) {
86         // No database password entered!!!
87         OUTPUT_HTML('<div>{--LANG_WARNING--}:</div> {--WARN_NULL_PASSWORD--}');
88 }
89
90 //
91 ?>