Features Pricing Blog FAQ Login Start Free →
🔴 Troubleshooting

Fix WordPress White Screen of Death

📅 January 2025 ⏱️ 5 min read ✍️ Woops.ai Team

⚡ Quick Fix

  1. Deactivate plugins (via FTP: rename /wp-content/plugins)
  2. Switch theme (rename theme folder)
  3. Enable debug mode in wp-config.php

What is the White Screen of Death?

The "White Screen of Death" (WSOD) is one of the most frustrating WordPress errors. Your website suddenly shows nothing but a blank white page – no error message, no hints, nothing. This can scare away visitors and cost you money.

💡
Important: Backup First!

Before making any changes, always create a backup of your website. This way you can restore everything if needed.

Common Causes

Step-by-Step Solution

1

Enable Debug Mode

Open wp-config.php via FTP and change these lines:

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);

Errors will now be logged to /wp-content/debug.log.

2

Deactivate Plugins

Connect via FTP and rename /wp-content/plugins to /wp-content/plugins_backup.

If the site works after this, a plugin is the culprit. Rename the folder back and deactivate plugins one by one.

3

Switch Theme

Rename your theme folder in /wp-content/themes/. WordPress will automatically activate a default theme.

4

Increase Memory Limit

Add this line to wp-config.php (before "That's all"):

define('WP_MEMORY_LIMIT', '256M');

Prevention

Fix WordPress Problems Faster

Describe your problem and get instant step-by-step guidance.

Try Free →