X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fload_config.php;h=bd18a92522f35a511197bfacca9678c9a9f5993f;hp=26d35e68c86a03e63b95fd4b253d9d7d30a209f9;hb=25b4a580b4c7e0d429eb8e436785d3c2ef304f8e;hpb=81bfbcd72e424060ea1223b49ad92fcfa150f361 diff --git a/inc/load_config.php b/inc/load_config.php index 26d35e68c8..bd18a92522 100644 --- a/inc/load_config.php +++ b/inc/load_config.php @@ -1,7 +1,7 @@ inc/config.php along with the new file '.getConfig('CACHE_PATH').'config-local.php. Please remove inc/config.php to avoid incompatiblity issues. Thank you.'); +} elseif (isIncludeReadable(getConfig('CACHE_PATH') . 'config-local.php')) { // Then load it - loadIncludeOnce('inc/cache/config-local.php'); + loadIncludeOnce(getConfig('CACHE_PATH') . 'config-local.php'); + + // Mark configuration as loaded + $GLOBALS['config_local_loaded'] = true; +} elseif (isIncludeReadable('inc/config.php')) { + // Out-dated inc/config.php found, falling back to load and "wrap" it + updateOldConfigFile(); } elseif (isInstalling()) { // Set some essential constants // @TODO Rewrite them to avoid this else block - define('MAIN_TITLE', 'Your mail-exchanger title'); - define('SLOGAN' , 'Your cool slogan here'); - define('WEBMASTER' , 'you@some-hoster.tld.invalid'); -} else { - // Problem in application detected - debug_report_bug('Wether we are not installing nor config-local.php is created!'); + setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title'); + setConfigEntry('SLOGAN' , 'Your cool slogan here'); + setConfigEntry('WEBMASTER' , 'you@some-hoster.tld.invalid'); + + // Set output mode here + setConfigEntry('OUTPUT_MODE', 'render'); +} + +// Check if the user setups his MySQL stuff... +if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isInstallationPhase()) && (!isGetRequestParameterSet('installing')) && (isInstalled())) { + // No login entered and outside installation mode + outputHtml('{--LANG_WARNING--}:'); + if (isInstalled()) { + // You have changed my configuration file! + app_die(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}'); + } else { + // Please run the installation script (maybe again) + app_die(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}'); + } +} elseif ((!isInstalling()) && (!isInstallationPhase()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) { + // No database password entered!!! + loadTemplate('admin_settings_saved', false, '
{--LANG_WARNING--}:
{--WARN_NULL_PASSWORD--}'); } -// +// [EOF] ?>