The White Screen of Death (WSOD) happens when your WordPress site shows a completely blank white page with no error message.

Why Does the White Screen of Death Happen?

Before You Start

Method 1: Enable Debug Mode

Edit wp-config.php and add:

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

Method 2: Disable All Plugins

Go to:

wp-content/plugins

Rename the folder to plugins-disabled.

Method 3: Switch to a Default Theme

Rename your active theme folder inside:

wp-content/themes

Method 4: Increase PHP Memory Limit

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

How to Prevent WSOD

Leave a Reply

Your email address will not be published. Required fields are marked *