Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: class_error.php 5027 2010-06-16 04:22:21Z RyanGordon $
| * $Id$
|
*/ // Set to 1 if recieving a blank page (template failure).
| */ // Set to 1 if recieving a blank page (template failure).
|
Zeile 22 | Zeile 22 |
---|
define("MYBB_SQL_LOAD_ERROR", 44); define("MYBB_CACHE_NO_WRITE", 45); define("MYBB_CACHEHANDLER_LOAD_ERROR", 46);
|
define("MYBB_SQL_LOAD_ERROR", 44); define("MYBB_CACHE_NO_WRITE", 45); define("MYBB_CACHEHANDLER_LOAD_ERROR", 46);
|
if(!defined("E_STRICT")) { // This constant has been defined since PHP 5. define("E_STRICT", 2048); }
| |
if(!defined("E_RECOVERABLE_ERROR"))
|
if(!defined("E_RECOVERABLE_ERROR"))
|
{
| {
|
// This constant has been defined since PHP 5.2. define("E_RECOVERABLE_ERROR", 4096); }
|
// This constant has been defined since PHP 5.2. define("E_RECOVERABLE_ERROR", 4096); }
|
if(!defined("E_DEPRECATED"))
| if(!defined("E_DEPRECATED")) { // This constant has been defined since PHP 5.3. define("E_DEPRECATED", 8192); }
if(!defined("E_USER_DEPRECATED"))
|
{ // This constant has been defined since PHP 5.3.
|
{ // This constant has been defined since PHP 5.3.
|
define("E_DEPRECATED", 8192);
| define("E_USER_DEPRECATED", 16384);
|
}
class errorHandler {
| }
class errorHandler {
|
Zeile 49 | Zeile 49 |
---|
* @var array */ public $error_types = array(
|
* @var array */ public $error_types = array(
|
E_ERROR => 'Error', E_WARNING => 'Warning', E_PARSE => 'Parsing Error', E_NOTICE => 'Notice', E_CORE_ERROR => 'Core Error', E_CORE_WARNING => 'Core Warning', E_COMPILE_ERROR => 'Compile Error', E_COMPILE_WARNING => 'Compile Warning', E_DEPRECATED => 'Deprecated Warning', E_USER_ERROR => 'User Error', E_USER_WARNING => 'User Warning', E_USER_NOTICE => 'User Notice', E_STRICT => 'Runtime Notice', E_RECOVERABLE_ERROR => 'Catchable Fatal Error', MYBB_SQL => 'MyBB SQL Error', MYBB_TEMPLATE => 'MyBB Template Error', MYBB_GENERAL => 'MyBB Error', MYBB_NOT_INSTALLED => 'MyBB Error', MYBB_NOT_UPGRADED => 'MyBB Error', MYBB_INSTALL_DIR_EXISTS => 'MyBB Error', MYBB_SQL_LOAD_ERROR => 'MyBB Error', MYBB_CACHE_NO_WRITE => 'MyBB Error', MYBB_CACHEHANDLER_LOAD_ERROR => 'MyBB Error',
| E_ERROR => 'Error', E_WARNING => 'Warning', E_PARSE => 'Parsing Error', E_NOTICE => 'Notice', E_CORE_ERROR => 'Core Error', E_CORE_WARNING => 'Core Warning', E_COMPILE_ERROR => 'Compile Error', E_COMPILE_WARNING => 'Compile Warning', E_DEPRECATED => 'Deprecated Warning', E_USER_ERROR => 'User Error', E_USER_WARNING => 'User Warning', E_USER_NOTICE => 'User Notice', E_USER_DEPRECATED => 'User Deprecated Warning', E_STRICT => 'Runtime Notice', E_RECOVERABLE_ERROR => 'Catchable Fatal Error', MYBB_SQL => 'MyBB SQL Error', MYBB_TEMPLATE => 'MyBB Template Error', MYBB_GENERAL => 'MyBB Error', MYBB_NOT_INSTALLED => 'MyBB Error', MYBB_NOT_UPGRADED => 'MyBB Error', MYBB_INSTALL_DIR_EXISTS => 'MyBB Error', MYBB_SQL_LOAD_ERROR => 'MyBB Error', MYBB_CACHE_NO_WRITE => 'MyBB Error', MYBB_CACHEHANDLER_LOAD_ERROR => 'MyBB Error',
|
); /**
| ); /**
|
Zeile 129 | Zeile 130 |
---|
{ $error_types = $error_types & ~$bit; }
|
{ $error_types = $error_types & ~$bit; }
|
| error_reporting($error_types);
|
set_error_handler(array(&$this, "error"), $error_types); }
| set_error_handler(array(&$this, "error"), $error_types); }
|
Zeile 163 | Zeile 165 |
---|
// For some reason in the installer this setting is set to "<" $accepted_error_types = array('both', 'error', 'warning', 'none'); if(!in_array($mybb->settings['errortypemedium'], $accepted_error_types))
|
// For some reason in the installer this setting is set to "<" $accepted_error_types = array('both', 'error', 'warning', 'none'); if(!in_array($mybb->settings['errortypemedium'], $accepted_error_types))
|
{
| {
|
$mybb->settings['errortypemedium'] = "both"; }
| $mybb->settings['errortypemedium'] = "both"; }
|
Zeile 331 | Zeile 333 |
---|
{ $message = "SQL Error: {$message['error_no']} - {$message['error']}\nQuery: {$message['query']}"; }
|
{ $message = "SQL Error: {$message['error_no']} - {$message['error']}\nQuery: {$message['query']}"; }
|
| // Do not log something that might be executable $message = str_replace('<?', '< ?', $message);
|
$error_data = "<error>\n"; $error_data .= "\t<dateline>".TIME_NOW."</dateline>\n"; $error_data .= "\t<script>".$file."</script>\n";
| $error_data = "<error>\n"; $error_data .= "\t<dateline>".TIME_NOW."</dateline>\n"; $error_data .= "\t<script>".$file."</script>\n";
|
Zeile 390 | Zeile 396 |
---|
{ $title = "MyBB SQL Error"; $error_message = "<p>MyBB has experienced an internal SQL error and cannot continue.</p>";
|
{ $title = "MyBB SQL Error"; $error_message = "<p>MyBB has experienced an internal SQL error and cannot continue.</p>";
|
if($mybb->settings['errortypemedium'] == "both" || $mybb->settings['errortypemedium'] == "error" || defined("IN_INSTALL") || defined("IN_UPGRADE")) {
| if($mybb->settings['errortypemedium'] == "both" || $mybb->settings['errortypemedium'] == "error" || defined("IN_INSTALL") || defined("IN_UPGRADE")) { $message['query'] = htmlspecialchars_uni($message['query']); $message['error'] = htmlspecialchars_uni($message['error']);
|
$error_message .= "<dl>\n"; $error_message .= "<dt>SQL Error:</dt>\n<dd>{$message['error_no']} - {$message['error']}</dd>\n"; if($message['query'] != "")
| $error_message .= "<dl>\n"; $error_message .= "<dt>SQL Error:</dt>\n<dd>{$message['error_no']} - {$message['error']}</dd>\n"; if($message['query'] != "")
|
Zeile 505 | Zeile 513 |
---|
@header('Status: 503 Service Temporarily Unavailable'); @header('Retry-After: 1800'); @header("Content-type: text/html; charset={$charset}");
|
@header('Status: 503 Service Temporarily Unavailable'); @header('Retry-After: 1800'); @header("Content-type: text/html; charset={$charset}");
|
$_SERVER['PHP_SELF'] = htmlspecialchars_uni($_SERVER['PHP_SELF']);
| $file_name = basename(__FILE__);
|
echo <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
| echo <<<EOF <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
|
Zeile 519 | Zeile 527 |
---|
a:visited { color: #026CB1; text-decoration: none; } a:hover, a:active { color: #000; text-decoration: underline; } #container { width: 600px; padding: 20px; background: #fff; border: 1px solid #e4e4e4; margin: 100px auto; text-align: left; }
|
a:visited { color: #026CB1; text-decoration: none; } a:hover, a:active { color: #000; text-decoration: underline; } #container { width: 600px; padding: 20px; background: #fff; border: 1px solid #e4e4e4; margin: 100px auto; text-align: left; }
|
h1 { margin: 0; background: url({$_SERVER['PHP_SELF']}?action=mybb_logo) no-repeat; height: 82px; width: 248px; }
| h1 { margin: 0; background: url({$file_name}?action=mybb_logo) no-repeat; height: 82px; width: 248px; }
|
#content { border: 1px solid #B60101; background: #fff; } h2 { font-size: 12px; padding: 4px; background: #B60101; color: #fff; margin: 0; } .invisible { display: none; }
| #content { border: 1px solid #B60101; background: #fff; } h2 { font-size: 12px; padding: 4px; background: #B60101; color: #fff; margin: 0; } .invisible { display: none; }
|
Zeile 591 | Zeile 599 |
---|
foreach($trace as $call) {
|
foreach($trace as $call) {
|
if(!$call['file']) $call['file'] = "[PHP]"; if(!$call['line']) $call['line'] = " "; if($call['class']) $call['function'] = $call['class'].$call['type'].$call['function'];
| if(empty($call['file'])) $call['file'] = "[PHP]"; if(empty($call['line'])) $call['line'] = " "; if(!empty($call['class'])) $call['function'] = $call['class'].$call['type'].$call['function'];
|
$call['file'] = str_replace(MYBB_ROOT, "/", $call['file']); $backtrace .= "<tr>\n"; $backtrace .= "<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">{$call['file']}</td>\n";
| $call['file'] = str_replace(MYBB_ROOT, "/", $call['file']); $backtrace .= "<tr>\n"; $backtrace .= "<td style=\"font-size: 11px; padding: 4px; border-bottom: 1px solid #ccc;\">{$call['file']}</td>\n";
|