PHP-FPM + Wordpress:调试日志不起作用(Apache)

时间:2018-10-26 10:56:27

标签: php wordpress debugging fpm

就像话题说的那样。启用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才能正常工作吗?

0 个答案:

没有答案