Maybe now better, but a simple wget still gives HTTP/1.0 :(
[mailer.git] / inc / load_config.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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 - 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 // 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(getConfig('CACHE_PATH') . 'config-local.php')) && (isIncludeReadable('inc/config.php'))) {
55         // We are better in installation mode
56         $GLOBALS['mailer_installing'] = true;
57
58         // Define default main_title here
59         setConfigEntry('MAIN_TITLE', 'Your mail-exchange title');
60
61         // Set output mode here
62         setConfigEntry('OUTPUT_MODE', 'render');
63
64         // Both exist! This is bad and should be avoided by the admin
65         app_die(__FILE__, __LINE__, 'You have uploaded or kept an out-dated file at <strong>inc/config.php</strong> along with the new file <strong>'.getConfig('CACHE_PATH').'config-local.php</strong>. Please remove <strong>inc/config.php</strong> to avoid incompatiblity issues. Thank you.');
66 } elseif (isIncludeReadable(getConfig('CACHE_PATH') . 'config-local.php')) {
67         // Then load it
68         loadIncludeOnce(getConfig('CACHE_PATH') . 'config-local.php');
69
70         // Mark configuration as loaded
71         $GLOBALS['config_local_loaded'] = true;
72 } elseif (isIncludeReadable('inc/config.php')) {
73         // Out-dated inc/config.php found, falling back to load and "wrap" it
74         updateOldConfigFile();
75 } elseif (isInstalling()) {
76         // Set some essential constants
77         // @TODO Rewrite them to avoid this else block
78         setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
79         setConfigEntry('SLOGAN'    , 'Your cool slogan here');
80         setConfigEntry('WEBMASTER' , 'you@some-hoster.tld.invalid');
81
82         // Set output mode here
83         setConfigEntry('OUTPUT_MODE', 'render');
84 }
85
86 // Check if the user setups his MySQL stuff...
87 if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isInstallationPhase()) && (!isGetRequestParameterSet('installing')) && (isInstalled())) {
88         // No login entered and outside installation mode
89         outputHtml('<strong>{--LANG_WARNING--}:</strong>');
90         if (isInstalled()) {
91                 // You have changed my configuration file!
92                 app_die(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}');
93         } else {
94                 // Please run the installation script (maybe again)
95                 app_die(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}');
96         }
97 } elseif ((!isInstalling()) && (!isInstallationPhase()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) {
98         // No database password entered!!!
99         loadTemplate('admin_settings_saved', false, '<div>{--LANG_WARNING--}:</div> {--WARN_NULL_PASSWORD--}');
100 }
101
102 // [EOF]
103 ?>