
WSD
White Screen of Death: WordPress Crash
Quick Fix
1. Disable all plugins via FTP or WP-CLI. 2. Switch to a default theme. 3. Clear browser and site cache. 4. Reload the page to see if content appears.
What it Means
The White Screen of Death (WSD) is a blank page that appears when WordPress can’t load any PHP code. It usually signals a fatal error, memory exhaustion, or corrupted core files.
Possible Causes
- 1PHP memory limit reached
- 2Corrupted plugin or theme file
- 3Syntax error in functions.php
- 4Outdated WordPress core
- 5Database connection failure
How to Fix
Step-by-Step Solutions
- Check PHP Memory
Open wp-config.php and add or update the line define('WP_MEMORY_LIMIT', '256M'); to give WordPress more RAM.
define('WP_MEMORY_LIMIT', '256M'); - Disable Plugins
Rename the plugins folder to plugins‑bak via FTP or use WP-CLI: wp plugin deactivate --all. This stops all plugins from loading.
wp plugin deactivate --all - Switch Theme
Rename your active theme folder to force WordPress to use the default Twenty Twenty‑Three theme.
mv wp-content/themes/your-theme wp-content/themes/your-theme‑bak - Check Core Files
Re‑upload fresh WordPress core files from wordpress.org, excluding wp-content and .htaccess.
wp core download --force - Enable Debugging
Add define('WP_DEBUG', true); and define('WP_DEBUG_LOG', true); to wp-config.php to capture error logs.
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true);
Commands You Can Try
Technical Details
Related Errors
Still stuck?
Pro tips
- Use a staging site to test changes before applying to live site.
- Keep regular backups so you can revert quickly.
- Monitor PHP error logs for recurring issues.
Contact your hosting provider if you can’t access the admin area or if the site remains blank after all steps. If the issue persists after restoring core files and disabling plugins, reach out to a WordPress developer.
If these solutions didn't help, try searching our database for similar issues.
Contact Support