X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fload_config.php;h=d6f032f00712cac499a77e5439ef39c344a5f26f;hp=e0c3ad0ee5c800f7655badcead1061432cff2172;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=5d89789720c77e954b2eba28c00ec710dd28900d diff --git a/inc/load_config.php b/inc/load_config.php index e0c3ad0ee5..d6f032f007 100644 --- a/inc/load_config.php +++ b/inc/load_config.php @@ -10,14 +10,9 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Lader fuer Konfiguration * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -43,15 +38,15 @@ if (!defined('__SECURITY')) { // Set some config entries which is required for installation phase setConfigEntry('OUTPUT_MODE' , 'render'); setConfigEntry('WRITE_FOOTER', 'Y'); -setConfigEntry('_DB_TYPE' , 'mysql3'); +setConfigEntry('_DB_TYPE' , 'mysql'); // Mark configuration as NOT loaded which is the default -$GLOBALS['config_local_loaded'] = false; +$GLOBALS['config_local_loaded'] = FALSE; // Is the local configuration there? if ((isIncludeReadable(getCachePath() . 'config-local.php')) && (isIncludeReadable('inc/config.php'))) { // We are better in installation mode - $GLOBALS['mailer_installing'] = true; + $GLOBALS['__mailer_installing'] = TRUE; // Define default main_title here setConfigEntry('MAIN_TITLE', 'Your mail-exchange title'); @@ -60,13 +55,13 @@ if ((isIncludeReadable(getCachePath() . 'config-local.php')) && (isIncludeReadab setConfigEntry('OUTPUT_MODE', 'render'); // Both exist! This is bad and should be avoided by the admin - debug_report_bug(__FILE__, __LINE__, 'You have uploaded or kept an out-dated file at inc/config.php along with the new file '.getCachePath().'config-local.php. Please remove inc/config.php to avoid incompatiblity issues. Thank you.'); + reportBug(__FILE__, __LINE__, 'You have uploaded or kept an out-dated file at inc/config.php along with the new file '.getCachePath().'config-local.php. Please remove inc/config.php to avoid incompatiblity issues. Thank you.'); } elseif (isIncludeReadable(getCachePath() . 'config-local.php')) { // Then load it loadIncludeOnce(getCachePath() . 'config-local.php'); // Mark configuration as loaded - $GLOBALS['config_local_loaded'] = true; + $GLOBALS['config_local_loaded'] = TRUE; } elseif (isIncludeReadable('inc/config.php')) { // Out-dated inc/config.php found, falling back to load and "wrap" it updateOldConfigFile(); @@ -75,26 +70,26 @@ if ((isIncludeReadable(getCachePath() . 'config-local.php')) && (isIncludeReadab // @TODO Rewrite them to avoid this else block setConfigEntry('MAIN_TITLE', 'Your mail-exchanger title'); setConfigEntry('SLOGAN' , 'Your cool slogan here'); - setConfigEntry('WEBMASTER' , 'you@some-hoster.tld.invalid'); + setConfigEntry('WEBMASTER' , 'you@some-hoster.example'); // Set output mode here setConfigEntry('OUTPUT_MODE', 'render'); } // Check if the user setups his database login stuff... -if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isInstallationPhase()) && (!isGetRequestParameterSet('installing')) && (isInstalled())) { +if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isInstaller()) && (!isGetRequestElementSet('installing')) && (isInstalled())) { // No login entered and outside installation mode - outputHtml('{--MAILER_WARNING--}:'); + outputHtml('{--MAILER_WARNING--}'); if (isInstalled()) { // You have changed my configuration file! - debug_report_bug(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}'); + reportBug(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}'); } else { // Please run the installation script (maybe again) - debug_report_bug(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}'); + reportBug(__FILE__, __LINE__, '{--DIE_RUN_INSTALLER_MYSQL--}'); } -} elseif ((!isInstalling()) && (!isInstallationPhase()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) { +} elseif ((!isInstalling()) && (!isInstaller()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) { // No database password entered - loadTemplate('admin_settings_saved', false, '
{--MAILER_WARNING--}:
{--WARN_NULL_PASSWORD--}'); + displayMessage('
{--MAILER_WARNING--}
{--WARN_NULL_PASSWORD--}'); } // [EOF]