这是我第一次看到这个。在我正在进行的一个项目中,我尝试打开wordpress的调试模式以查看日志。即使我激活了debug\\u登录wp-config.php
, debug.log
从未在中创建文件/htdocs/wp-content/
wp-config.php
define(\'WP_DEBUG\', true);
define(\'WP_DEBUG_LOG\', true);
define(\'WP_DEBUG_DISPLAY\', false);
@ini_set(\'display_errors\',0);
define(\'SCRIPT_DEBUG\', true);
wp-content dir rights
load.php
if ( WP_DEBUG_LOG ) {
ini_set( \'log_errors\', 1 );
var_dump( WP_CONTENT_DIR . \'/debug.log\' );
// display correctly this => "/htdocs/wp-content/debug.log";
ini_set( \'error_log\', WP_CONTENT_DIR . \'/debug.log\' );
}