【发布时间】:2014-05-06 21:28:07
【问题描述】:
当我尝试在 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。
【问题讨论】:
标签: wordpress google-app-engine appengine-wordpress