Difference between revisions of "WP-DEBUG"

From KOP KB
Jump to: navigation, search
(Created page with "WP_DEBUG is a PHP constant (a permanent global variable) that can be used to trigger the "debug" mode throughout WordPress. It is assumed to be false by default and is usually...")
 
 
Line 1: Line 1:
 
WP_DEBUG is a PHP constant (a permanent global variable) that can be used to trigger the "debug" mode throughout WordPress. It is assumed to be false by default and is usually set to true in the wp-config.php file on development copies of WordPress.
 
WP_DEBUG is a PHP constant (a permanent global variable) that can be used to trigger the "debug" mode throughout WordPress. It is assumed to be false by default and is usually set to true in the wp-config.php file on development copies of WordPress.
 +
 +
 +
 +
<syntaxhighlight lang="php">
  
 
define('WP_DEBUG', true);
 
define('WP_DEBUG', true);
 
define('WP_DEBUG', false);
 
define('WP_DEBUG', false);
 +
 +
</syntaxhighlight>
  
 
WP_DEBUG_LOG
 
WP_DEBUG_LOG
Line 9: Line 15:
  
 
Note that this allows you to write to /wp-content/debug.log using PHP's built in error_log() function, which can be useful for instance when debugging AJAX events.  
 
Note that this allows you to write to /wp-content/debug.log using PHP's built in error_log() function, which can be useful for instance when debugging AJAX events.  
 +
 +
To enable Debug log place the following code into the wp-config.
 +
 +
<syntaxhighlight lang="php">
 +
define('WP_DEBUG_LOG', true);
 +
</syntaxhighlight>
  
 
source: http://codex.wordpress.org/Debugging_in_WordPress
 
source: http://codex.wordpress.org/Debugging_in_WordPress

Latest revision as of 22:58, 14 January 2015

WP_DEBUG is a PHP constant (a permanent global variable) that can be used to trigger the "debug" mode throughout WordPress. It is assumed to be false by default and is usually set to true in the wp-config.php file on development copies of WordPress.


define('WP_DEBUG', true);
define('WP_DEBUG', false);

WP_DEBUG_LOG

WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

Note that this allows you to write to /wp-content/debug.log using PHP's built in error_log() function, which can be useful for instance when debugging AJAX events.

To enable Debug log place the following code into the wp-config.

define('WP_DEBUG_LOG', true);

source: http://codex.wordpress.org/Debugging_in_WordPress