0

当我尝试在 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。

4

1 回答 1

7

显然,必须在 Wordpress 的本地副本中停用 Google App Engine for WordPress 插件。仍然需要在 App Engine 的生产副本中激活它。

于 2014-05-06T21:34:45.943 回答