How to get rid of White Screen of Death (WSOD)on the WordPress site?

Problem: Your WordPress site loads a blank white screen with no error message.

Solution:

  1. Deactivate all plugins via FTP or your hosting File Manager (rename /wp-content/plugins/ to /plugins-disabled/).
  2. Switch to a default theme (like Twenty Twenty-Four) by renaming your theme’s folder.
  3. Increase PHP memory limit in wp-config.php (define('WP_MEMORY_LIMIT','256M');).
  4. Enable debugging by adding define('WP_DEBUG', true); in wp-config.php.
  5. Re-activate plugins/themes one by one to find the problem.

And Bob’s your uncle!!!

Comments

Leave a Reply

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