1

我决定尝试使用 Windows Azure 来托管 Wordpress。所以我刚刚使用 Azure 中的网站选项从库中创建了一个全新的 Wordpress 安装。

这是我尝试更新到 3.7 时得到的

Downloading update from http://wordpress.org/wordpress-3.7-no-content.zip…
Unpacking the update…
Verifying the unpacked files…
Preparing to install the latest version…
Enabling Maintenance mode…
Copying the required files…
Disabling Maintenance mode…
Could not copy file.: index.php
Installation Failed

任何想法为什么会发生这种情况?

4

1 回答 1

0

我遇到了同样的问题,并得到了与 Jef 相同的错误消息。要修复它,请执行以下操作:

打开 wp-config.php 并删除/删除/注释掉这些代码行:

    define('FS_METHOD','direct');
    define('FS_CHMOD_DIR',0777);
    define('FS_CHMOD_FILE',0666);

现在添加这些代码行:

    define('FS_CHMOD_DIR', (0755 & ~ umask()));
    define('FS_CHMOD_FILE', (0644 & ~ umask()));

保存并上传 wp-config.php。转到您的仪表板并运行更新。系统将要求您提供 ftp 用户名和密码。

于 2013-10-26T21:09:26.600 回答