
Problem: Your WordPress site loads a blank white screen with no error message.
Solution:
- Deactivate all plugins via FTP or your hosting File Manager (rename
/wp-content/plugins/
to/plugins-disabled/
). - Switch to a default theme (like Twenty Twenty-Four) by renaming your theme’s folder.
- Increase PHP memory limit in
wp-config.php
(define('WP_MEMORY_LIMIT','256M');
). - Enable debugging by adding
define('WP_DEBUG', true);
inwp-config.php
. - Re-activate plugins/themes one by one to find the problem.
And Bob’s your uncle!!!
Leave a Reply