X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=b79794bea0a486c1d1a9e5cfa2d364c17d849188;hb=d7d40e177e09a7161b79bfc95a1d2e91fdff4691;hp=767227bc65ddec21b4273e279d24903658123bfc;hpb=a47049ea6f00de14e0c87c1b78b035cc713a1f09;p=mailer.git diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 767227bc65..b79794bea0 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -40,6 +40,9 @@ if (!defined('__SECURITY')) { die(); } // END - if +// Init array +$__functions = array(); + // Init include file array as it follows same naming scheme foreach ( array( 'stats', @@ -50,27 +53,32 @@ foreach ( array( 'request', 'session', 'code', + 'pool', 'language', 'sql', 'expression', 'filter', 'revision', 'extensions') as $lib) { - // Load special functions - loadIncludeOnce('inc/' . $lib . '-functions.php'); + + // Add it + array_push($__functions, $lib . '-functions'); } // END - foreach // Load more function libraries or includes -foreach (array('filters', 'mysql-manager', 'handler') as $lib) { +foreach (array_merge($__functions, array('filters', 'mysql-manager', 'handler')) as $lib) { // Load special functions loadIncludeOnce('inc/' . $lib . '.php'); } // END - foreach +// Remove array +unset($__functions); + // Set error handler set_error_handler('__errorHandler'); // Disable block-mode by default -enableBlockMode(false); +enableBlockMode(FALSE); // Init error handler initErrorHandler(); @@ -109,37 +117,8 @@ if ((!isInstalling()) && (!isInstallationPhase())) { // CSS array initExtensionCssFiles(); - if ((!empty($GLOBALS['mysql']['host'])) && (!empty($GLOBALS['mysql']['login'])) && (!empty($GLOBALS['mysql']['dbase']))) { - // Connect to DB - SQL_CONNECT($GLOBALS['mysql']['host'], $GLOBALS['mysql']['login'], $GLOBALS['mysql']['password'], __FILE__, __LINE__); - - // Is the link valid? - if (SQL_IS_LINK_UP()) { - // Enable exit on error - enableExitOnError(); - - // Is it a valid resource? - if (SQL_SELECT_DB($GLOBALS['mysql']['dbase'], __FILE__, __LINE__) === true) { - // Set database name (required for ext-optimize and isSqlTableCreated()) - setConfigEntry('__DB_NAME', $GLOBALS['mysql']['dbase']); - - // Remove MySQL array from namespace - unset($GLOBALS['mysql']); - - // Load cache - loadIncludeOnce('inc/load_cache.php'); - } else { - // Wrong database? - reportBug(__FILE__, __LINE__, 'Wrong database selected.'); - } - } else { - // No link to database! - reportBug(__FILE__, __LINE__, 'Database link is not yet up.'); - } - } else { - // Maybe you forgot to enter your database login? - reportBug(__FILE__, __LINE__, 'Database login is missing.'); - } + // Initialize SQL link + initSqlLink(); } else { // Default output is 'direct' for HTML output setConfigEntry('OUTPUT_MODE', 'direct'); @@ -153,6 +132,9 @@ if ((!isInstalling()) && (!isInstallationPhase())) { // CFG: DATABASE-TYPE setConfigEntry('_DB_TYPE', 'mysql3'); + // Set link as down + unsetSqlLinkUp(__FILE__, __LINE__); + // Load database layer here loadIncludeOnce('inc/db/lib.php');