• Dreamhost Banner Ad

WordPress Blank Screen Of Death After Dreamhost Upgrade

Dreamhost is currently upgrading their servers and moving their customers to new servers gradually. Last week was my turn to move.

One of the problems my blogs encountered after the move was the blank screen of death. That is, when you visit this blog, my photo blog and my wife’s blog, all you see is a blank screen. Blank white screen with no error codes and if you view the source code, nothing is there. Visiting the login page or any page will also result in a blank screen of death. I tried rebooting my servers but it did not solve my problem.

I opened a support ticket and their technical support fixed it. Guess what caused it? It’s the Super Cache plugin! The tech support simply changes one line of code on each WordPress installation and everything went back to normal.

If you are experiencing the same problem now because Dreamhost just moved your blog to a new server, here’s the solution:

1. Connect thru FTP and edit advanced-cache.php. That is inside the wp-content folder.

2. Remove whatever word is written between home and your username in the single line of code listed there.
Example:

require_once( '/home/xxxxxx/username/yourURL.com/wp-content/plugins/wp-super-cache/' . 'wp-cache-phase1.php');

should be changed to:

require_once( '/home/username/yourURL.com/wp-content/plugins/wp-super-cache/' . 'wp-cache-phase1.php');

Yes, just removed those xxxxx or whatever is the word in it.

3. After you made the changes, the blank screen of death will be gone! Your blog will be resurrected in no time!

So far, everything seems fine. Please report any blank screen of death that you might encounter on this blog. Thanks a bunch! That’s all for now.

Marhgil Macuha

Marhgil Macuha is a Computer Engineering graduate of Batangas State University. He is currently a Senior Solutions Developer at a Canadian IT company.

7 Comments:

  1. glad your blog is up and running again. the post is way too techie for me though. hehe

  2. so that is why your blog is down for almost 12 hrs

  3. I tried accesing your site yesterday, but it was down. Well, anyways, glad to see you back 🙂

  4. CONFIRMED HERE, I SAW A TOTAL WHITE SCREEN ON YOUR BLOG LAST TIME I CHECKED.
    glad its fixed.
    -Nhoel of http://www.keywordspeak.com

  5. Thanks for the great tips. Recently I installed Super Cache Plugin in my blog and I did not it can cause a problem. I have to edit the file according to your instruction.

  6. Thanks for posting. I battled this issue for two days before deciding to search for answers. Like you said though, no errors in the logs or anything, very troublesome bug to track down.

    Thanks again.

  7. Another of the solutions I tried and still didn’t work. Thanks for pointing me into new directions though. You wouldn’t believe what it wound up being for me.

Leave a Reply