X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=959ccfd6828f3a2ce686034dc161f3c95daebb55;hb=21b317f4fa55e0fb3c362affcceb71d833ab9ddf;hp=741122f5a8e450b1f1d3d45008fe23de463c72cd;hpb=1ebf518b9552f71ee95de6f4b80e6de3a27716d1;p=mailer.git diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 741122f5a8..959ccfd682 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -1,7 +1,7 @@ = '0.3.6')) { - // Generate random number - setConfigEntry('RAND_NUMBER', generateRandomCode(10, mt_rand(10000, 32766), getUserId(), '')); - } else { - // Generate weak (!!!) code - setConfigEntry('RAND_NUMBER', mt_rand(1000000, 9999999)); - } - // Check module for permissions $checkModule = checkModulePermissions(); - // Cound module here - countModuleHit(getModule()); - // Admin module should be accessable by guests to login if ((getModule() == 'admin') && ($checkModule == 'admin_only')) { // This is fine and can be ignored @@ -139,60 +121,50 @@ if ((!isInstalling()) && (!isInstallationPhase())) { } } else { // Wrong database? - addFatalMessage(__FILE__, __LINE__, getMessage('WRONG_DB_SELECTED')); + addFatalMessage(__FILE__, __LINE__, '{--WRONG_DB_SELECTED--}'); } } else { // No link to database! - addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK')); + addFatalMessage(__FILE__, __LINE__, '{--NO_DB_LINK--}'); } } else { // Maybe you forgot to enter your MySQL data? - addFatalMessage(__FILE__, __LINE__, getMessage('MYSQL_DATA_MISSING')); + addFatalMessage(__FILE__, __LINE__, '{--MYSQL_DATA_MISSING--}'); } } else { - /////////////////////////////////////////////////// - // Include neccessary functions for installation // - /////////////////////////////////////////////////// - // Default output is 'direct' for HTML output setConfigEntry('OUTPUT_MODE', 'direct'); // This hack prevents a backtrace in CSS output - if (getOutputMode() == '1') { + if (isCssOutputMode()) { // Problem with config so set output mode setConfigEntry('OUTPUT_MODE', 'render'); } // END - if - // Set other missing variables - if (!isOutputModeSet()) setOutputMode('0'); + // CFG: DATABASE-TYPE + setConfigEntry('_DB_TYPE', 'mysql3'); // Include more - foreach (array('inc/databases.php','inc/db/lib.php','inc/session.php','inc/versions.php','inc/install-functions.php','inc/load_config.php') as $inc) { + foreach (array('inc/db/lib.php','inc/databases.php','inc/session.php','inc/versions.php','inc/install-functions.php','inc/load_config.php') as $inc) { // Load the include loadIncludeOnce($inc); } // END - foreach - // Init filter system here - initFilterSystem(); - - // Are we installation routine? - if ((!isInstalling()) && (getOutputMode() != '1') && (getOutputMode() != -1)) { - // You have to install first! - redirectToUrl('install.php'); - } // END - if - - // Administrative functions + // Load cache loadIncludeOnce('inc/load_cache.php'); // Run the init filter chain runFilterChain('init'); - // Load configuration file(s) here - loadIncludeOnce('inc/load_config.php'); + // Are we installation routine? + if ((!isInstalling()) && (!isCssOutputMode()) && (!isRawOutputMode())) { + // You have to install first! + redirectToUrl('install.php'); + } // END - if } // Handle fatal errors -handleFatalErrors(); +runFilterChain('handle_fatal_errors'); // [EOF] ?>