我决定试用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
为什么会发生这种情况?
答案 0 :(得分: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用户名和密码。