当我尝试在 Wordpress for App Engine 的本地副本中更新插件时,我看到以下错误:
Downloading update from https://downloads.wordpress.org/plugin/batcache.1.2.zip…
Download failed. Saving to a file is not currently supported.
我能找到的对该错误消息的唯一引用来自 appengine-wordpress-plugin/modules/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。