本文介绍了定义('WP_DEBUG',真);不显示错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 wp-config 文件中启用了错误:
I enabled the errors in my wp-config file:
define('WP_DEBUG', true);
但是我有一个空白的白页.未列出任何错误.
But I have an empty white page. No errors are listed.
推荐答案
插入到 wp-config.php 文件中的以下代码会将所有错误、通知和警告记录到 wp 中名为 debug.log 的文件中-内容目录.它还会隐藏错误,因此它们不会中断页面生成.
The below code, inserted in your wp-config.php file, will log all errors, notices, and warnings to a file called debug.log in the wp-content directory. It will also hide the errors so they do not interrupt page generation.
这段代码你必须在之前插入/* 就是这样,停止编辑!快乐的博客.*/在 wp-config.php 文件中.
// 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);
来源:https://codex.wordpress.org/Debugging_in_WordPress
这篇关于定义('WP_DEBUG',真);不显示错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!