死亡的白色屏幕通常是致命的PHP错误,大多数情况下是由于语法错误造成的。这通常不会向浏览器发送错误。
您可以做一些事情:
打开PHPerror_log
在php中。ini文件并设置error_reporting
级别。http://php.net/manual/en/errorfunc.configuration.php
错误信息:http://www.php.net/manual/en/errorfunc.constants.php
或者,你也可以在你的wp配置中打开它(来自wordpress codex)。http://codex.wordpress.org/Editing_wp-config.php
/**
* This will log all errors notices and warnings to a file called debug.log in
* wp-content only when WP_DEBUG is true
*/
define(\'WP_DEBUG\', true); // false
if (WP_DEBUG) {
define(\'WP_DEBUG_LOG\', true);
define(\'WP_DEBUG_DISPLAY\', false);
@ini_set(\'display_errors\',0);
}
在wp配置中启用WordPress调试和保存的查询(wp调试与上述示例相同)。php。
define(\'WP_DEBUG\', true);
define(\'SAVEQUERIES\', true);
并安装调试栏,
http://wordpress.org/extend/plugins/debug-bar/我还建议使用xDebug,