2 /************************************************************************
3 * MXChange v0.2.1 Start: 04/04/2009 *
4 * =============== Last change: 04/04/2009 *
6 * -------------------------------------------------------------------- *
7 * File : load_config.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Loader for configuration *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Lader fuer Konfiguration *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
44 // Set some config entries which is required for installation phase
45 setConfigEntry('OUTPUT_MODE' , 'render');
46 setConfigEntry('WRITE_FOOTER', 'Y');
47 setConfigEntry('_DB_TYPE' , 'mysql3');
49 // Mark configuration as NOT loaded which is the default
50 $GLOBALS['config_local_loaded'] = false;
52 // Is the local configuration there?
53 if ((isIncludeReadable(getConfig('CACHE_PATH') . 'config-local.php')) && (isIncludeReadable('inc/config.php'))) {
54 // We are better in installation mode
55 $GLOBALS['mxchange_installing'] = true;
57 // Define default main_title here
58 setConfigEntry('MAIN_TITLE', 'Your mail-exchange title');
60 // Set output mode here
61 setConfigEntry('OUTPUT_MODE', 'render');
63 // Both exist! This is bad and should be avoided by the admin
64 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.');
65 } elseif (isIncludeReadable(getConfig('CACHE_PATH') . 'config-local.php')) {
67 loadIncludeOnce(getConfig('CACHE_PATH') . 'config-local.php');
69 // Mark configuration as loaded
70 $GLOBALS['config_local_loaded'] = true;
71 } elseif (isIncludeReadable('inc/config.php')) {
72 // Out-dated inc/config.php found, falling back to load and "wrap" it
73 updateOldConfigFile();
74 } elseif (isInstalling()) {
75 // Set some essential constants
76 // @TODO Rewrite them to avoid this else block
77 setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title');
78 setConfigEntry('SLOGAN' , 'Your cool slogan here');
79 setConfigEntry('WEBMASTER' , 'you@some-hoster.tld.invalid');
81 // Set output mode here
82 setConfigEntry('OUTPUT_MODE', 'render');
84 // Redirect to install.php
85 redirectToUrl('install.php');
88 // Check if the user setups his MySQL stuff...
89 if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isGetRequestElementSet('installing')) && (isInstalled())) {
90 // No login entered and outside installation mode
91 outputHtml('<strong>{--LANG_WARNING--}:</strong>');
93 // You have changed my configuration file!
94 app_die(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}');
96 // Please run the installation script (maybe again)
97 app_die(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}');
99 } elseif ((!isInstalling()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) {
100 // No database password entered!!!
101 loadTemplate('admin_settings_saved', false, '<div>{--LANG_WARNING--}:</div> {--WARN_NULL_PASSWORD--}');