0
當我嘗試在WordPress的本地副本App Engine的更新插件,我看到以下錯誤:如何更新Wordpress for App Engine的本地副本中的WordPress插件?
Downloading update from https://downloads.wordpress.org/plugin/batcache.1.2.zip…
Download failed. Saving to a file is not currently supported.
來,我能找到這個錯誤信息的唯一參考來自AppEngine上,WordPress的,插件/模塊/ urlfetch.php:
// For now, lets not support streaming into a file and see what breaks
if (isset($r['filename'])) {
return new WP_Error('http_request_failed',
__('Saving to a file is not currently supported.'));
}
我知道,我可以簡單地手動添加插件文件,但它會是不錯的「更新」鏈接,一次點擊來做到這一點。有誰知道如何避免這個錯誤?
我使用的是Mac OS 10.7。