就像话题说的那样。启用PHP-FPM时,wordpress上的调试日志不起作用。
我在Stackoverflow上的某处找到了以下代码,但是它不起作用。
define('WP_DEBUG', true);
if ( WP_DEBUG ) {
// Enable Debug logging to the /wp-content/debug.log file
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
@ini_set( 'log_errors', 'On' );
@ini_set( 'display_errors', 'Off' );
@ini_set( 'error_reporting', E_ALL );
@ini_set( 'error_log', 'php_error.log' );
define('SAVEQUERIES', false); // show queries
define( 'WCS_DEBUG', true ); // show scheduled jobs for WooCommerce under Tools menu
}
我需要在Apache上安装任何mod才能正常工作吗?