2)
{
var_dump($backtrace);
die('Error loop.');
}
// Check if error logging is actually on.
if (empty($modSettings['enableErrorLogging']))
return $error_message;
// Basically, htmlspecialchars it minus &. (for entities!)
$error_message = strtr($error_message, array('<' => '<', '>' => '>', '"' => '"'));
$error_message = strtr($error_message, array('<br />' => '
', '<br>' => '
', '<b>' => '', '</b>' => '', "\n" => '
'));
// Add a file and line to the error message?
// Don't use the actual txt entries for file and line but instead use %1$s for file and %2$s for line
if ($file == null)
$file = '';
else
// Windows style slashes don't play well, lets convert them to the unix style.
$file = str_replace('\\', '/', $file);
if ($line == null)
$line = 0;
else
$line = (int) $line;
// Just in case there's no id_member or IP set yet.
if (empty($user_info['id']))
$user_info['id'] = 0;
if (empty($user_info['ip']))
$user_info['ip'] = '';
// Find the best query string we can...
$query_string = empty($_SERVER['QUERY_STRING']) ? (empty($_SERVER['REQUEST_URL']) ? '' : str_replace($scripturl, '', $_SERVER['REQUEST_URL'])) : $_SERVER['QUERY_STRING'];
// Don't log the session hash in the url twice, it's a waste.
if (!empty($smcFunc['htmlspecialchars']))
$query_string = $smcFunc['htmlspecialchars']((SMF == 'SSI' || SMF == 'BACKGROUND' ? '' : '?') . preg_replace(array('~;sesc=[^&;]+~', '~' . session_name() . '=' . session_id() . '[&;]~'), array(';sesc', ''), $query_string));
// Just so we know what board error messages are from.
if (isset($_POST['board']) && !isset($_GET['board']))
$query_string .= ($query_string == '' ? 'board=' : ';board=') . $_POST['board'];
// What types of categories do we have?
$known_error_types = array(
'general',
'critical',
'database',
'undefined_vars',
'user',
'ban',
'template',
'debug',
'cron',
'paidsubs',
'backup',
'login',
);
// This prevents us from infinite looping if the hook or call produces an error.
$other_error_types = array();
if (empty($tried_hook))
{
$tried_hook = true;
// Allow the hook to change the error_type and know about the error.
call_integration_hook('integrate_error_types', array(&$other_error_types, &$error_type, $error_message, $file, $line));
$known_error_types += $other_error_types;
}
// Make sure the category that was specified is a valid one
$error_type = in_array($error_type, $known_error_types) && $error_type !== true ? $error_type : 'general';
// leave out the call to log_error
array_splice($backtrace, 0, 1);
$backtrace = !empty($smcFunc['json_encode']) ? $smcFunc['json_encode']($backtrace) : json_encode($backtrace);
// Don't log the same error countless times, as we can get in a cycle of depression...
$error_info = array($user_info['id'], time(), $user_info['ip'], $query_string, $error_message, (string) $sc, $error_type, $file, $line, $backtrace);
if (empty($last_error) || $last_error != $error_info)
{
// Insert the error into the database.
$smcFunc['db_error_insert']($error_info);
$last_error = $error_info;
// Get an error count, if necessary
if (!isset($context['num_errors']))
{
$query = $smcFunc['db_query']('', '
SELECT COUNT(*)
FROM {db_prefix}log_errors',
array()
);
list($context['num_errors']) = $smcFunc['db_fetch_row']($query);
$smcFunc['db_free_result']($query);
}
else
$context['num_errors']++;
}
// reset error call
$error_call = 0;
// Return the message to make things simpler.
return $error_message;
}
/**
* An irrecoverable error. This function stops execution and displays an error message.
* It logs the error message if $log is specified.
*
* @param string $error The error message
* @param string|bool $log = 'general' What type of error to log this as (false to not log it))
* @param int $status The HTTP status code associated with this error
*/
function fatal_error($error, $log = 'general', $status = 500)
{
global $txt;
// Send the appropriate HTTP status header - set this to 0 or false if you don't want to send one at all
if (!empty($status))
send_http_status($status);
// We don't have $txt yet, but that's okay...
if (empty($txt))
die($error);
log_error_online($error);
setup_fatal_error_context($log ? log_error($error, $log) : $error);
}
/**
* Shows a fatal error with a message stored in the language file.
*
* This function stops execution and displays an error message by key.
* - uses the string with the error_message_key key.
* - logs the error in the forum's default language while displaying the error
* message in the user's language.
* - uses Errors language file and applies the $sprintf information if specified.
* - the information is logged if log is specified.
*
* @param string $error The error message
* @param string|false $log The type of error, or false to not log it
* @param array $sprintf An array of data to be sprintf()'d into the specified message
* @param int $status = false The HTTP status code associated with this error
*/
function fatal_lang_error($error, $log = 'general', $sprintf = array(), $status = 403)
{
global $txt, $language, $user_info, $context;
static $fatal_error_called = false;
// Ensure this is an array.
$sprintf = (array) $sprintf;
// Send the status header - set this to 0 or false if you don't want to send one at all
if (!empty($status))
send_http_status($status);
// Try to load a theme if we don't have one.
if (empty($context['theme_loaded']) && empty($fatal_error_called))
{
$fatal_error_called = true;
loadTheme();
}
// If we have no theme stuff we can't have the language file...
if (empty($context['theme_loaded']))
die($error);
$reload_lang_file = true;
// Log the error in the forum's language, but don't waste the time if we aren't logging
if ($log)
{
loadLanguage('Errors', $language);
$reload_lang_file = $language != $user_info['language'];
if (empty($txt[$error]))
$error_message = $error;
else
$error_message = empty($sprintf) ? $txt[$error] : vsprintf($txt[$error], $sprintf);
log_error($error_message, $log);
}
// Load the language file, only if it needs to be reloaded
if ($reload_lang_file)
{
loadLanguage('Errors');
$error_message = empty($sprintf) ? $txt[$error] : vsprintf($txt[$error], $sprintf);
}
log_error_online($error, $sprintf);
setup_fatal_error_context($error_message, $error);
}
/**
* Handler for standard error messages, standard PHP error handler replacement.
* It dies with fatal_error() if the error_level matches with error_reporting.
*
* @param int $error_level A pre-defined error-handling constant (see {@link https://php.net/errorfunc.constants})
* @param string $error_string The error message
* @param string $file The file where the error occurred
* @param int $line The line where the error occurred
*/
function smf_error_handler($error_level, $error_string, $file, $line)
{
global $settings, $modSettings, $db_show_debug;
// Error was suppressed with the @-operator.
if (error_reporting() == 0 || error_reporting() == (E_ERROR | E_PARSE | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR))
return true;
// Ignore errors that should should not be logged.
$error_match = error_reporting() & $error_level;
if (empty($error_match) || empty($modSettings['enableErrorLogging']))
return false;
if (strpos($file, 'eval()') !== false && !empty($settings['current_include_filename']))
{
$array = debug_backtrace();
$count = count($array);
for ($i = 0; $i < $count; $i++)
{
if ($array[$i]['function'] != 'loadSubTemplate')
continue;
// This is a bug in PHP, with eval, it seems!
if (empty($array[$i]['args']))
$i++;
break;
}
if (isset($array[$i]) && !empty($array[$i]['args']))
$file = realpath($settings['current_include_filename']) . ' (' . $array[$i]['args'][0] . ' sub template - eval?)';
else
$file = realpath($settings['current_include_filename']) . ' (eval?)';
}
if (isset($db_show_debug) && $db_show_debug === true)
{
// Commonly, undefined indexes will occur inside attributes; try to show them anyway!
if ($error_level % 255 != E_ERROR)
{
$temporary = ob_get_contents();
if (substr($temporary, -2) == '="')
echo '"';
}
// Debugging! This should look like a PHP error message.
echo '
', $error_level % 255 == E_ERROR ? 'Error' : ($error_level % 255 == E_WARNING ? 'Warning' : 'Notice'), ': ', $error_string, ' in ', $file, ' on line ', $line, '
';
}
$error_type = stripos($error_string, 'undefined') !== false ? 'undefined_vars' : 'general';
$message = log_error($error_level . ': ' . $error_string, $error_type, $file, $line);
// Let's give integrations a chance to ouput a bit differently
call_integration_hook('integrate_output_error', array($message, $error_type, $error_level, $file, $line));
// Dying on these errors only causes MORE problems (blank pages!)
if ($file == 'Unknown')
return;
// If this is an E_ERROR or E_USER_ERROR.... die. Violently so.
if ($error_level % 255 == E_ERROR)
obExit(false);
else
return;
// If this is an E_ERROR, E_USER_ERROR, E_WARNING, or E_USER_WARNING.... die. Violently so.
if ($error_level % 255 == E_ERROR || $error_level % 255 == E_WARNING)
fatal_error(allowedTo('admin_forum') ? $message : $error_string, false);
// We should NEVER get to this point. Any fatal error MUST quit, or very bad things can happen.
if ($error_level % 255 == E_ERROR)
die('No direct access...');
}
/**
* It is called by {@link fatal_error()} and {@link fatal_lang_error()}.
*
* @uses template_fatal_error()
*
* @param string $error_message The error message
* @param string $error_code An error code
* @return void|false Normally doesn't return anything, but returns false if a recursive loop is detected
*/
function setup_fatal_error_context($error_message, $error_code = null)
{
global $context, $txt, $ssi_on_error_method;
static $level = 0;
// Attempt to prevent a recursive loop.
++$level;
if ($level > 1)
return false;
// Maybe they came from dlattach or similar?
if (SMF != 'SSI' && SMF != 'BACKGROUND' && empty($context['theme_loaded']))
loadTheme();
// Don't bother indexing errors mate...
$context['robot_no_index'] = true;
if (!isset($context['error_title']))
$context['error_title'] = $txt['error_occured'];
$context['error_message'] = isset($context['error_message']) ? $context['error_message'] : $error_message;
$context['error_code'] = isset($error_code) ? 'id="' . $error_code . '" ' : '';
$context['error_link'] = isset($context['error_link']) ? $context['error_link'] : 'javascript:document.location=document.referrer';
if (empty($context['page_title']))
$context['page_title'] = $context['error_title'];
loadTemplate('Errors');
$context['sub_template'] = 'fatal_error';
// If this is SSI, what do they want us to do?
if (SMF == 'SSI')
{
if (!empty($ssi_on_error_method) && $ssi_on_error_method !== true && is_callable($ssi_on_error_method))
$ssi_on_error_method();
elseif (empty($ssi_on_error_method) || $ssi_on_error_method !== true)
loadSubTemplate('fatal_error');
// No layers?
if (empty($ssi_on_error_method) || $ssi_on_error_method !== true)
exit;
}
// Alternatively from the cron call?
elseif (SMF == 'BACKGROUND')
{
// We can't rely on even having language files available.
if (defined('FROM_CLI') && FROM_CLI)
echo 'cron error: ', $context['error_message'];
else
echo 'An error occurred. More information may be available in your logs.';
exit;
}
// We want whatever for the header, and a footer. (footer includes sub template!)
obExit(null, true, false, true);
/* DO NOT IGNORE:
If you are creating a bridge to SMF or modifying this function, you MUST
make ABSOLUTELY SURE that this function quits and DOES NOT RETURN TO NORMAL
PROGRAM FLOW. Otherwise, security error messages will not be shown, and
your forum will be in a very easily hackable state.
*/
trigger_error('No direct access...', E_USER_ERROR);
}
/**
* Show a message for the (full block) maintenance mode.
* It shows a complete page independent of language files or themes.
* It is used only if $maintenance = 2 in Settings.php.
* It stops further execution of the script.
*/
function display_maintenance_message()
{
global $maintenance, $mtitle, $mmessage;
set_fatal_error_headers();
if (!empty($maintenance))
echo '