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; } 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 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 database login stuff... if ((empty($GLOBALS['mysql']['login'])) && (!isInstalling()) && (!isInstallationPhase()) && (!isGetRequestParameterSet('installing')) && (isInstalled())) { // No login entered and outside installation mode outputHtml('{--MAILER_WARNING--}:'); if (isInstalled()) { // You have changed my configuration file! debug_report_bug(__FILE__, __LINE__, '{--DIE_CONFIG_CHANGED_YOU--}'); } else { // Please run the installation script (maybe again) debug_report_bug(__FILE__, __LINE__, '{--DIE_RUN_INSTALL_MYSQL--}'); } } elseif ((!isInstalling()) && (!isInstallationPhase()) && (empty($GLOBALS['mysql']['password'])) && (getConfig('WARN_NO_PASS') == 'Y')) { // No database password entered displayMessage('
{--MAILER_WARNING--}:
{--WARN_NULL_PASSWORD--}'); } // [EOF] ?>