Extension:DebugMode

MediaWiki extensions manual
DebugMode
Release status: unmaintained
Implementation User interface
Description Puts wiki into debug mode
Author(s) Ike Hecht (Tosfostalk)
Latest version 0.1.0 (2014-10-28)
MediaWiki 1.23
PHP 5.3
Database changes No
License GNU General Public License 2.0 or later
Download
  • $wgDebugMode
  • $wgDebugModeIgnoreVars
Quarterly downloads 1 (Ranked 144th)
Translate the DebugMode extension if it is available at translatewiki.net

The DebugMode extension puts the wiki into debug mode, which means all MediaWiki debugging parameters are switched on.

Installation edit

  • Download and move the extracted DebugMode folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DebugMode
  • Add the following code at the bottom of your LocalSettings.php file:
    require_once "$IP/extensions/DebugMode/DebugMode.php";
    
  •   Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration parameters edit

$wgDebugMode
Level of debugging. Can be set to true to enable all debugging or false to do nothing.
Setting to false does not turn debugging off! It just leaves the existing settings alone.
Can be set using named constants in the DebugMode class, using bitwise operators:
Default value is a reasonable level of debugging, which is DebugMode::DEBUG_MODE_ALL minus DebugMode::DEBUG_MODE_VERBOSE.
Example: DebugMode::DEBUG_MODE_ALL ^ DebugMode::DEBUG_MODE_INI ^ DebugMode::DEBUG_MODE_PHP for “all but no PHP settings”.
$wgDebugModeIgnoreVars
An array of variables that should be ignored by the extension. Can be used for more fine-tuning of variables than allowed by $wgDebugMode. These vars can be any named variables known to the extension, including MediaWiki globals and PHP settings. Default is an empty array, nothing is ignored.
Example: array( 'wgDebugAPI' ) to ignore setting of $wgDebugAPI .

See also edit