配置MW:显示错误信息

来自Wikioe
跳到导航 跳到搜索


关于

上次在安装调试MediaWiki的SyntaxHighLight插件的时候,网上搜索信息,找到了让MediaWiki显示错误信息的几个配置:

error_reporting( -1 );

ini_set( 'display_errors', 1 );

$wgShowSQLErrors = true;

$wgDebugDumpSql  = true;

$wgDebugToolbar =TRUE;

$wgShowExceptionDetails=true;

$wgDevelopmentWarnings=TRUE;

$wgShowDebug =true;

直接拿来使用了,对于调试过程十分友好,特此记录。

简单备注

好像没有必要备注……

配置 说明
error_reporting( -1 ); “error_reporting(level)”;:返回旧的 error_reporting 级别,或者在 level 参数未给出时返回当前的级别。
// 关闭错误报告
error_reporting(0);

// 报告 runtime 错误
error_reporting(E_ERROR | E_WARNING | E_PARSE);

// 报告所有错误
error_reporting(E_ALL);

// 等同 error_reporting(E_ALL);
ini_set("error_reporting", E_ALL);

// 报告 E_NOTICE 之外的所有错误
error_reporting(E_ALL & ~E_NOTICE);
ini_set( 'display_errors', 1 ); “ini_set(string $varname, string $newvalue)”:用来设置php.ini的值,
$wgShowSQLErrors = true; Shows the actual query, which caused the error.(This feature was deprecated in version 1.32.0.)
$wgDebugDumpSql = true; Log all SQL statements to the DBQuery channel and the Debugging toolbar (if also enabled).
$wgDebugToolbar =TRUE; Shows a toolbar on the page with profiling, log messages and more.
$wgShowExceptionDetails=true; Enable more details (like a stack trace) to be shown on the "Fatal error" page.
$wgDevelopmentWarnings=TRUE; MediaWiki will throw notices for some possible error conditions and for deprecated functions.
$wgShowDebug =true; Adds the "log messages" part of wgDebugToolbar as a raw list to the page.