// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
@ini_set('display_errors',0);
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define('SCRIPT_DEBUG', true);
4条答案
按热度按时间kcrjzv8t1#
Pear调试WordPress插件:http://wordpress.org/extend/plugins/wp-pear-debug/
**更新4/08/2015:**以上插件已经几年没有更新了,您也可以使用
wp-config.php
中内置的WordPress PHP调试功能,即:完整文档参见https://codex.wordpress.org/Debugging_in_WordPress
yrefmtwq2#
通常有(不止一个)方法可以为php启用“调试模式,”那就是安装一个调试器扩展,比如xdebug .
您需要一个连接到调试器并检索+显示信息的客户端。
Netbeans 6.7已经是released了,它的php模块支持xdebug,它已经成为一个不错的IDE for PHP development了。
jljoyd4f3#
我知道这个问题早就有人回答了,但是如果你在wp-config.php中执行
define('WP_DEBUG',true);
,仍然没有看到错误,那么就在define语句之后添加以下代码:if (WP_DEBUG) ini_set('display_errors',1);
jtjikinw4#
看看WordPress的FirePHP调试器(垃圾链接被删除)。它使用FirePHP通过Web浏览器调试WordPress。
主要特点: