1.已设置php.ini max_execution_time = 240
导入显示设置60
2.wp-config.php 添加 set_time_limit(600); 无效
3. .htaccess 添加 php_value max_execution_time 300 无效;
以上两步未验证
4.可能是插件中设置时间问题, wp-content\themes\woodstock-child添加
add_filter( ‘http_request_timeout‘, ‘mytheme_bump_request_timeout‘, 100 );
function mytheme_bump_request_timeout(){
return 300; //Change this to your desired timeout value in ms
}
无效
5.搜索*time_limit ,在wp-includes\comment.php 修改@ set_time_limit( 60 ); 为@ set_time_limit( 160 ); 无效,恢复设置。
在wp-includes\deprecated.php 修改@ set_time_limit( 60 ); 为@ set_time_limit( 160 ); 有效。
时间: 2024-10-12 13:12:53