下载plugin时,出现Download failed.: Operation timed out超时错误

修改 /wp-admin/includes/file.php文件

 $response = wp_remote_get($url, array(‘timeout’ => 300)); 

 改成1000秒或更大

$response = wp_remote_get($url, array(‘timeout’ => 1000));

 

猜你喜欢

转载自gabrielyang.iteye.com/blog/2378746
今日推荐