我也有同样的问题,但它发生在导入主题单元测试数据时。xml及其附件。我正在使用WP 3.8.1。这是WordPress的问题,所以编辑php。ini无效。WP使用硬编码值(60秒)表示WP\\U http in的http\\U request\\u超时class-http.php
.
要解决此问题,请将此代码放入functions.php
当前活动主题的:
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
}