WordPress White Screen Fix
The "White Screen of Death" (WSOD) shows a blank page with no error message.
Enable Debug Mode
- Access File Manager in cPanel
- Navigate to your WordPress folder
- Edit
wp-config.php
- Find:
define('WP_DEBUG', false);
- Change to:
define('WP_DEBUG', true);
- Save and refresh your site
This should now show the actual error message.
Common Causes & Fixes
1. Plugin Conflict
- Go to cPanel → File Manager
- Navigate to
wp-content/plugins
- Rename the folder to
plugins_old
- Check if site loads
- If yes, rename back and deactivate plugins one by one
2. Theme Issue
- Navigate to
wp-content/themes
- Rename your active theme folder
- WordPress will switch to a default theme
3. Memory Limit
Add to wp-config.php:
define('WP_MEMORY_LIMIT', '256M');
4. Corrupted Core Files
- Download fresh WordPress from wordpress.org
- Upload wp-admin and wp-includes folders (not wp-content)
Remember: Disable debug mode after fixing: define('WP_DEBUG', false);