Fresh WordPress Install on Azure Fails to Update to 3.7

I decided to try out Windows Azure for hosting WordPress. So i just created a fresh new install of WordPress from the gallery using the Websites option in Azure.

This is what i get when i try to update to 3.7

Read More
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

Any ideas why this is happening?

Related posts

Leave a Reply

1 comment

  1. I experienced the same problem and got the same error message as Jef. To fix it do the following:

    Open wp-config.php and delete/remove/comment out these lines of code:

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

    Now add these lines of code:

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

    Save and upload wp-config.php. Go to your dashboard and run the update. You will be asked for your ftp user name and password.