The "White Screen of Death" (WSoD) is a common WordPress error where your site shows a blank white page with no error message. This usually happens due to a PHP memory limit issue or a fatal error from a plugin/theme.
Here is how to fix it:
Fix 1: Increase PHP Memory Limit
-
Access your site via FTP or cPanel File Manager.
-
Find the file named
wp-config.phpin your root WordPress directory. -
Edit the file and add the following line just above the line that says
/* That's all, stop editing! Happy publishing. */:define('WP_MEMORY_LIMIT', '256M'); -
Save the file and refresh your site.
Fix 2: Deactivate All Plugins
If you can't access the admin panel, rename the plugins folder via FTP:
-
Go to
/wp-content/. -
Rename the
pluginsfolder toplugins_old. -
This deactivates all plugins. Reload your site. If it comes back, a plugin was the culprit.
-
Rename the folder back to
plugins, then rename individual plugin folders one by one inside to find the bad one.
Fix 3: Switch to a Default Theme
-
In
/wp-content/themes/, rename your current active theme's folder (e.g., renametwentytwentysixtotwentytwentysix_old). -
WordPress will automatically fall back to a default theme (like Twenty Twenty-Four).
-
If the site works, your theme was the issue.