X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmysql-connect.php;h=4dcd7eaee0ab90b689714194a7a5ce5c0a429aca;hp=3a53518b7526564459c61e8d14d61ddf7ef650f4;hb=42a97fed99de09435e92dd34b418d348d2bbd78a;hpb=52e8a0635bd0b7c653845685c55e4e5f251375fe diff --git a/inc/mysql-connect.php b/inc/mysql-connect.php index 3a53518b75..4dcd7eaee0 100644 --- a/inc/mysql-connect.php +++ b/inc/mysql-connect.php @@ -32,8 +32,7 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } @@ -41,178 +40,220 @@ if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) // CFG: DEBUG-SQL (if enabled and DEBUG_MODE is enabled all SQL queries will be logged to debug.log) define('DEBUG_SQL', false); -// Load library +// Load database library require_once(PATH."inc/db/lib.php"); +// Non-database functions +require_once(PATH."inc/functions.php"); + +// Filter functions +require_once(PATH."inc/filters.php"); + +// Functions which interact with the database +require_once(PATH."inc/mysql-manager.php"); + +// Load extensions and language +require_once(PATH."inc/extensions.php"); + +// Error handler function +function __errorHandler ($errno, $errstr, $errfile, $errline) { + // Construct message + $msg = sprintf("errno=%s,errstr=%s,errfile=%s,errline=%s", + $errno, + $errstr, + basename($errfile), + $errline + ); + + // Write debug log message + DEBUG_LOG(__FUNCTION__, __LINE__, "".$msg, true); + + // Output message to user and die + if (EXT_IS_ACTIVE("debug")) { + // Debug extension found! :-) + die("Error message written to debug.log. Please try to call the main page to continue."); + } else { + // No debug extension found + print("Please report this error at bugs.mxchange.org:
");
+		debug_print_backtrace();
+		die("
Thank you for your help finding bugs."); + } +} + +// Set error handler +set_error_handler('__errorHandler'); + +// Call-back function for running shutdown functions and close database connection +function __SHUTDOWN_HOOK () { + global $link; + + // Call the filter chain 'shutdown' + RUN_FILTER('shutdown', null, false); + + if (is_resource($link)) { + // Close link + SQL_CLOSE($link, __FILE__, __LINE__); + } else { + // No database link + ADD_FATAL(NO_DB_LINK); + } +} + +// Register shutdown hook +register_shutdown_function('__SHUTDOWN_HOOK'); + // Check if the user setups his MySQL stuff... -if ((empty($MySQL['login'])) && (!mxchange_installing) && (!isset($_GET['installing'])) && (mxchange_installed)) -{ +if ((empty($MySQL['login'])) && (!defined('mxchange_installing')) && (!isset($_GET['installing'])) && (isBooleanConstantAndTrue('mxchange_installed'))) { // No login entered and outside installation mode echo "".LANG_WARNING.": "; - if (mxchange_installed) - { + if (isBooleanConstantAndTrue('mxchange_installed')) { // You have changed my configuration file! die(DIE_CONFIG_CHANGED_YOU); - } - else - { + } else { // Please run the installation script (maybe again) die(DIE_RUN_INSTALL_MYSQL); } -} - elseif ((!mxchange_installing) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (warn_no_pass)) -{ +} elseif ((!isBooleanConstantAndTrue('mxchange_installing')) && (!isset($_GET['installing'])) && (empty($MySQL['password'])) && (isBooleanConstantAndTrue('warn_no_pass'))) { // No database password entered!!! echo "".LANG_WARNING.": ".WARN_NULL_PASSWORD; } +// Set dummy $_CONFIG array +$_CONFIG = array( + 'code_length' => 0, + 'patch_level' => 0, + 'last_update' => time() +); + // Check if this file is writeable or read-only and warn the user -if ((!mxchange_installing) && (mxchange_installed)) -{ +if ((!isBooleanConstantAndTrue('mxchange_installing')) && (isBooleanConstantAndTrue('mxchange_installed'))) { // Check for write-permission for config.php and inc directory if (empty($GLOBALS['module'])) $GLOBALS['module'] = "index"; - if (($GLOBALS['module'] != "admin") && (admin_registered)) - { - if (is_INCWritable("config")) ADD_FATAL(FATAL_CONFIG_WRITABLE); - if (is_INCWritable("dummy")) ADD_FATAL(FATAL_INC_WRITABLE); - } - // Init configuration arrays - $_CONFIG = array( - 'code_length' => 0 - ); + // CSS array $EXT_CSS_FILES = array(); - // Load general stuff, like... - require_once(PATH."inc/extensions.php"); // Extension management - require_once(PATH."inc/functions.php"); // Non-database functions - require_once(PATH."inc/databases.php"); // Several hard-coded databases (arrays, constants) - if ((!empty($MySQL['host'])) && (!empty($MySQL['login'])) && (!empty($MySQL['password'])) && (!empty($MySQL['dbase']))) { // Connect to DB + global $link; $link = SQL_CONNECT($MySQL['host'], $MySQL['login'], $MySQL['password'], __FILE__, __LINE__); // Is the link valid? if (is_resource($link)) { // Choose the database + global $db; $db = SQL_SELECT_DB($MySQL['dbase'], $link, __FILE__, __LINE__); // Is it a valid resource? if ($db === true) { - // Load configuration stuff - $result = SQL_QUERY("SELECT pass_len, points_register, points_ref, least_cats, check_double_email, check_double_pass, admin_notify, url_tlock, test_text, max_tlength, test_subj, autosend_active, max_send, url_blacklist, auto_purge, auto_purge_active, last_update, unconfirmed, profile_lock, online_timeout, mad_timestamp, mad_count, profile_update, send_prof_update, resend_profile_update, code_length, patch_level, patch_ctime, guest_stats, ref_payout, activate_xchange, order_multi_page, display_refid, ip_timeout, allow_direct_pay, config FROM "._MYSQL_PREFIX."_config WHERE config=0 LIMIT 1", __FILE__, __LINE__); - - if (SQL_NUMROWS($result) == 1) { - // Load data when previous SQL query did not fail - if (!$result) { - // Something went wrong - ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG); - return; - } - - // Load the configuration - $_CONFIG = array_merge($_CONFIG, SQL_FETCHARRAY($result)); + // This is required for extension 'optimize' to work + define('__DB_NAME', $MySQL['dbase']); - // Initialize include-file-pool - $INC_POOL = array(); + // Remove MySQL array from namespace + unset($MySQL); - // Load more include files - require_once(PATH."inc/mysql-manager.php"); // Functions which interact with the database - - // Run daily reset - if ((date("d", $_CONFIG['last_update']) != date("d", time()) || (DEBUG_MODE == true)) && (!mxchange_installing) && (mxchange_installed) && (admin_registered) && (!isset($_GET['register'])) && ($CSS != 1)) { - // Do daily things in external PHP file but only when script is completely setup - $INC_POOL[] = PATH."inc/reset/reset_daily.php"; + // Load configuration stuff + $_CONFIG = merge_array($_CONFIG, LOAD_CONFIG()); + + // Load "databases" aka static arrays + require_once(PATH."inc/databases.php"); + + // Loading patching system is required here... + require_once(PATH."inc/patch-system.php"); // Initialize patch system + + // Create missing configuration file + if (!function_exists('GET_CURR_THEME')) { + // Load dummy theme functions + require_once(PATH."inc/theme-dummy.php"); + } // END - if + + // Session management + require_once(PATH."inc/session.php"); + + // Run daily reset + require_once(PATH."inc/check-reset.php"); + + // Load admin include file if he is admin + if (IS_ADMIN()) { + // Administrative functions + require_once(PATH."inc/modules/admin/admin-inc.php"); + } // END - if + //* DEBUG: */ ADD_POINTS_REFSYSTEM("test", 36, 1000); + //* DEBUG: */ die(); + + // Get all values + if (($CSS != 1) && ($CSS != -1)) { + if (empty($GLOBALS['module'])) $GLOBALS['module'] = "empty"; + if (empty($GLOBALS['what'])) $GLOBALS['what'] = GET_WHAT($GLOBALS['module']); + if (empty($GLOBALS['action'])) $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']); + } else { + // Set action/what to empty + $GLOBALS['action'] = ""; + $GLOBALS['what'] = ""; + } - // Daily reset was run! - define('__DAILY_RESET', "1"); + // Run the init filter chain + RUN_FILTER('init'); + + // Set default 'what' value + //* DEBUG: */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-
\n"; + if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1)) { + if ($GLOBALS['module'] == "admin") { + // Set 'action' value to 'login' in admin menu + $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']); + } elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login")) { + // Set 'what' value to 'welcome' in guest and member menu + $GLOBALS['what'] = "welcome"; + if (getConfig('index_home') != "") $GLOBALS['what'] = getConfig('index_home'); + } else { + // Anything else like begging link + $GLOBALS['what'] = ""; } + } // END - if - // Load all extensions - require_once(PATH."inc/load_extensions.php"); + // Update sending pool + if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps - // Loading patching system is required here... - require_once(PATH."inc/patch-system.php"); // Initialize patch system + // Load all active extension including language files when not upgrading. + // Check module for testing and count one click + $dummy = CHECK_MODULE($GLOBALS['module']); + if ($dummy == "done") COUNT_MODULE($GLOBALS['module']); + unset($dummy); - // Functions which are related to themes - require_once(PATH."inc/theme-manager.php"); + // Shall we activate the exchange? + if (getConfig('activate_xchange') > 0) activateExchange(); - // Initialize session management - require_once(PATH."inc/session.php"); - - // Load admin include file if he is admin - if (IS_ADMIN()) { - // Administrative functions - require_once(PATH."inc/modules/admin/admin-inc.php"); - } - - // Get all values - if (($CSS != 1) && ($CSS != -1)) { - if (empty($GLOBALS['module'])) $GLOBALS['module'] = "empty"; - if (empty($GLOBALS['what'])) $GLOBALS['what'] = GET_WHAT($GLOBALS['module']); - if (empty($GLOBALS['action'])) $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']); + // Is the extension sql_patches installed and at least 0.3.6? + if (GET_EXT_VERSION("sql_patches") >= "0.3.6") { + // Generate random number + if (isset($GLOBALS['userid'])) { + define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), $GLOBALS['userid'], "")); } else { - // Set action/what to empty - $GLOBALS['action'] = ""; - $GLOBALS['what'] = ""; + define('RAND_NUMBER', GEN_RANDOM_CODE(10, mt_rand(10000,32766), 0, "")); } - - // Secure and validate user ID from cookie - UPDATE_LOGIN_DATA(); - - // Get session ID - if (empty($_SESSION['PHPSESSID'])) $_SESSION['PHPSESSID'] = session_id(); - - // Update online list - UPDATE_ONLINE_LIST($_SESSION['PHPSESSID'], $GLOBALS['module'], $GLOBALS['action'], $GLOBALS['what']); - - // Load theme name - $CurrTheme = GET_CURR_THEME(); - - // Set default 'what' value - //* DEBUG */ echo "-".$GLOBALS['module']."/".$GLOBALS['what']."-
\n"; - if ((empty($GLOBALS['what'])) && (empty($GLOBALS['action'])) && ($CSS != 1) && ($CSS != -1)) { - if ($GLOBALS['module'] == "admin") { - // Set 'action' value to 'login' in admin menu - $GLOBALS['action'] = GET_ACTION($GLOBALS['module'], $GLOBALS['what']); - } elseif (($GLOBALS['module'] == "index") || ($GLOBALS['module'] == "login")) { - // Set 'what' value to 'welcome' in guest and member menu - $GLOBALS['what'] = "welcome"; - if (!empty($_CONFIG['index_home'])) $GLOBALS['what'] = $_CONFIG['index_home']; - } else { - // Anything else like begging link - $GLOBALS['what'] = ""; - } - } - - // Update sending pool - if (($CSS != "1") && ($CSS != "-1")) require_once(PATH."inc/pool-update.php"); // Sends out mails in configureable steps - - // Load all active extension including language files when not upgrading. - // Check module for testing and count one click - $dummy = CHECK_MODULE($GLOBALS['module']); - if ($dummy == "done") COUNT_MODULE($GLOBALS['module']); - unset($dummy); - if ($_CONFIG['activate_xchange'] > 0) activateExchange(); } else { - // If you will read following error message you probably need to contact me (webmaster@mxchange.org) - // and download the sql-upgrades extension from my server. Please ask me which SQL file(s) you need to - // import *BEFORE* you import them! - ADD_FATAL(FATAL_CANNOT_LOAD_CONFIG); + // Generate weak (!!!) code + define('RAND_NUMBER', mt_rand(1000000, 9999999)); } - - // Free memory - SQL_FREERESULT($result); } else { + // Add language system + include (PATH."inc/language.php"); + // Wrong database? ADD_FATAL(WRONG_DB_SELECTED); } } else { + // Add language system + include (PATH."inc/language.php"); + // No link to database! ADD_FATAL(NO_DB_LINK); $db = false; } } else { + // Add language system + include (PATH."inc/language.php"); + // Maybe you forgot to enter your MySQL data? ADD_FATAL(MYSQL_DATA_MISSING); } @@ -221,54 +262,51 @@ if ((!mxchange_installing) && (mxchange_installed)) // Include neccessary functions for installation // /////////////////////////////////////////////////// - // Set CONFIG array - $_CONFIG = array( - 'code_length' => 0 - ); - // Set other missing variables $link = false; // No database link by default // Include required files require_once(PATH."inc/databases.php"); - require_once(PATH."inc/extensions.php"); - require_once(PATH."inc/theme-manager.php"); - require_once(PATH."inc/load_extensions.php"); require_once(PATH."inc/session.php"); + // Create missing configuration file + if (!function_exists('GET_CURR_THEME')) { + // Load dummy theme functions + require_once(PATH."inc/theme-dummy.php"); + } // END - if + // Check if we are in installation routine $installPhp = basename($_SERVER['PHP_SELF']); if (($installPhp != "install.php") && ($CSS != "1") && ($CSS != -1)) { // Redirect to the installation system LOAD_URL("install.php"); - } + } // END - if // Double-check installation mode - if ((!mxchange_installed) || (!admin_registered)) { + if ((!isBooleanConstantAndTrue('mxchange_installed')) || (!isBooleanConstantAndTrue('admin_registered'))) { // Check for file permissions - if (!is_INCWritable("config")) { + if (!IS_INC_WRITEABLE("config")) { ADD_FATAL(CONFIG_IS_WRITE_PROTECTED); - } - if (!is_INCWritable("dummy")) { + } // END - if + if (!IS_INC_WRITEABLE("dummy")) { ADD_FATAL(DUMMY_IS_WRITE_PROTECTED); - } - if (!is_INCWritable(".secret/dummy")) { + } // END - if + if (!IS_INC_WRITEABLE(".secret/dummy")) { ADD_FATAL(SECRET_IS_WRITE_PROTECTED); - } - } + } // END - if + } // END - if } // Any fatal messages? if (!is_array($FATAL)) $FATAL = array(); -if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (mxchange_installed) && (!mxchange_installing) && ($CSS != "1")) -{ +if (((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) && (isBooleanConstantAndTrue('mxchange_installed')) && (!defined('mxchange_installing')) && ($CSS != "1")) { // One or more fatal error(s) occur during connect... include (PATH."inc/header.php"); include (PATH."inc/fatal_errors.php"); unset($FATAL); include (PATH."inc/footer.php"); exit; -} +} // END - if // ?>