X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fload_config.php;h=0f277b06e45109a8d524697d5aa935f447062f1b;hb=7907803d71572fa5e6638e8ce52b6ec9d6ca2145;hp=4fac605313e3569cbb7e65f58074aca38389272c;hpb=66b91ce490ab549425619c95fc12086e126d541b;p=mailer.git diff --git a/inc/load_config.php b/inc/load_config.php index 4fac605313..0f277b06e4 100644 --- a/inc/load_config.php +++ b/inc/load_config.php @@ -1,7 +1,7 @@ inc/config.php along with the new file inc/cache/config-local.php. Please remove inc/config.php to avoid incompatiblity issues. Thank you.'); -} elseif (isIncludeReadable('inc/cache/config-local.php')) { + app_die(__FILE__, __LINE__, 'You have uploaded or kept an out-dated file at 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; @@ -82,14 +81,14 @@ if ((isIncludeReadable('inc/cache/config-local.php')) && (isIncludeReadable('inc // Set output mode here setConfigEntry('OUTPUT_MODE', 'render'); } else { - // Problem in application detected - debug_report_bug('Wether we are not installing nor config-local.php is created!'); + // Redirect to install.php + redirectToUrl('install.php'); } // Check if the user setups his MySQL stuff... -if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!REQUEST_ISSET_GET('installing')) && (isInstalled())) { +if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isGetRequestElementSet('installing')) && (isInstalled())) { // No login entered and outside installation mode - OUTPUT_HTML('{--LANG_WARNING--}: '); + outputHtml('{--LANG_WARNING--}:'); if (isInstalled()) { // You have changed my configuration file! app_die(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}'); @@ -99,8 +98,8 @@ if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!REQUEST_ISSET_ } } elseif ((!isInstalling()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) { // No database password entered!!! - OUTPUT_HTML('
{--LANG_WARNING--}:
{--WARN_NULL_PASSWORD--}'); + loadTemplate('admin_settings_saved', false, '
{--LANG_WARNING--}:
{--WARN_NULL_PASSWORD--}'); } -// +// [EOF] ?>