WordPress White Screen of Death

WordPress White Screen of Death - MakeWPFast
Critical Frequency: Common
Error message: The site is experiencing technical difficulties.

The WordPress White Screen of Death (WSOD) is one of the most common and frustrating WordPress errors. Your site shows a completely blank white page with no error message, making it difficult to diagnose.

Since WordPress 5.2, the recovery mode feature catches most fatal errors and sends an admin email with debugging information and a recovery mode link. However, the WSOD can still occur when errors happen before the recovery mode handler loads, such as in wp-config.php or very early-loading mu-plugins.

The WSOD almost always indicates a PHP fatal error. The key is to find and read the actual error message, which is hidden because WP_DEBUG is off by default on production sites.

Common Causes

  1. A PHP fatal error in a plugin or theme
  2. PHP memory limit exhausted (usually 64MB or 128MB default)
  3. Corrupted .htaccess or wp-config.php file
  4. Database connection failure after migration
  5. Incompatible PHP version after server update

How to Fix It

  1. Enable WP_DEBUG: Add define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); to wp-config.php, then check wp-content/debug.log
  2. Disable all plugins: Rename wp-content/plugins/ to plugins.bak/ via FTP or SSH. If the site loads, re-enable one by one to find the culprit
  3. Switch to a default theme: Rename your active theme folder. WordPress will fall back to Twenty Twenty-Four
  4. Increase memory limit: Add define('WP_MEMORY_LIMIT', '256M'); to wp-config.php
  5. Check PHP error logs: Look at /var/log/php-fpm/error.log or your host's error log viewer
  6. Restore from backup if all else fails u2014 or use WordPress recovery mode (check your email for the recovery link)

Diagnosing WordPress errors?

WP Multitool helps you find and fix performance issues, slow queries, and plugin conflicts without guesswork.

Try WP Multitool →
Get WordPress Performance Tips

Plugin reviews, speed optimization guides, and error debugging — straight to your inbox.

No spam. Unsubscribe anytime. We respect your privacy.