Dutton

How to FTP to your Azure Website

Yesterday evening I experienced my first WordPress White Screen of Death when trying to open the admin page on this blog. For those unfamiliar with the term, it can be caused by the process running out of memory on the server resulting in a plain white page being served up instead of some part of the site.

This excess memory usage is normally caused by a plugin misbehaving and I have been playing with some new plugins lately so I figured this might be the problem. A quick google took me to this solution which looked simple enough; FTP onto the site, rename the plugins directory to solve the white screen problem, then re-enable them one at the time to see which one causes the issue.

But now I'm using Azure as my web host, how on earth do I FTP onto it? Here's how:

  1. Log in to your Windows Azure dashboard.
  2. Select the website you want to FTP onto.
  3. Click to download the publish profile. AzureDashboard
  4. You will end up with a file which looks something like this:PublishProfile
    I opened this in Programmers Notepad so it was easier to read. Find the FTP publishProfile node and the fields are pretty self explanatory.

    • publishUrl - This is the address to FTP to.
    • userName - Your username.
    • userPWD - Your password.
  5. Bung these into your favorite FTP client, et voila!

Share this: