{"id":1964329,"date":"2025-05-01T01:58:16","date_gmt":"2025-05-01T05:58:16","guid":{"rendered":"https:\/\/theeventscalendar.com\/knowledgebase\/?p=1964329"},"modified":"2026-04-21T11:19:54","modified_gmt":"2026-04-21T15:19:54","slug":"how-to-fix-the-wordpress-white-screen-of-death-wsod","status":"publish","type":"post","link":"https:\/\/theeventscalendar.com\/knowledgebase\/how-to-fix-the-wordpress-white-screen-of-death-wsod\/","title":{"rendered":"How to Fix the WordPress White Screen of Death (WSOD)"},"content":{"rendered":"\n<p>The&nbsp;<strong>White Screen of Death (WSOD)<\/strong>&nbsp;is a common WordPress issue where your website displays a blank white screen instead of loading properly. This can be caused by various factors, including plugin conflicts, theme errors, or server issues. This guide will walk you through the steps to troubleshoot and resolve the problem.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-enable-wordpress-debugging\"><strong>Enable WordPress Debugging<\/strong><\/h4>\n\n\n\n<p>Enabling debugging can help identify the root cause of the issue by displaying error messages.<\/p>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Access your website files via&nbsp;<strong>FTP<\/strong>&nbsp;or your hosting provider&#8217;s&nbsp;<strong>File Manager<\/strong>.<\/li>\n\n\n\n<li>Locate the&nbsp;<code>wp-config.php<\/code>&nbsp;file in the root directory of your WordPress installation.<\/li>\n\n\n\n<li>Open the file in a text editor and find the line:<br><code>define('WP_DEBUG', false);<\/code><\/li>\n\n\n\n<li>Change it to:<br><code>define('WP_DEBUG', true); <br>define('WP_DEBUG_LOG', true); <br>define('WP_DEBUG_DISPLAY', false);<\/code><\/li>\n\n\n\n<li>Save the file and refresh your website.<\/li>\n\n\n\n<li>Check the&nbsp;<code>wp-content\/debug.log<\/code>&nbsp;file for error messages.<\/li>\n<\/ol>\n\n\n\n<p>For a detailed guide on enabling debugging, check out this article:<br>\ud83d\udd0d<a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/how-to-enable-debugging-in-wordpress\/\" target=\"_blank\" rel=\"noreferrer noopener\">How to Enable Debugging in WordPress<\/a><\/p>\n\n\n\n<p><strong>Analyze the Debug Log<\/strong><\/p>\n\n\n\n<p>After enabling WP Debug mode and refreshing the page, follow the steps below depending on the error you encounter:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Plugin-related errors<\/strong>: Proceed to <strong><a href=\"#h-check-for-plugin-conflicts\">Check for Plugin Conflicts<\/a><\/strong>.<\/li>\n\n\n\n<li><strong>Theme-related errors<\/strong>: Proceed to <strong><a href=\"#h-check-for-theme-issues\">Check for Theme Issues<\/a><\/strong>.<\/li>\n\n\n\n<li><strong>Memory errors<\/strong>: Proceed to <strong><a href=\"#h-increase-php-memory-limit\">Increase PHP Memory Limit<\/a><\/strong>.<\/li>\n\n\n\n<li><strong>Missing file errors<\/strong>: Continue to <strong><a href=\"#h-check-for-corrupted-core-files\">Check for Corrupted Core Files<\/a><\/strong>.<\/li>\n\n\n\n<li><strong>Unclear or persistent issues<\/strong>: Proceed to <strong><a href=\"#h-contact-your-hosting-provider\">Contact Your Hosting Provider<\/a><\/strong>.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-check-for-plugin-conflicts\"><strong>Check for Plugin Conflicts<\/strong><\/h4>\n\n\n\n<p>A faulty or conflicting plugin is a common cause of the White Screen of Death. If you are seeing errors pertaining to plugins, you can continue with the steps below.<\/p>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Access your website files via FTP or File Manager.<\/li>\n\n\n\n<li>Navigate to the&nbsp;<code>wp-content\/plugins<\/code>&nbsp;directory.<\/li>\n\n\n\n<li>Rename the&nbsp;<code>plugins<\/code>&nbsp;folder to&nbsp;<code>plugins_deactivated<\/code>.<\/li>\n\n\n\n<li>Refresh your website. If it loads, the issue is plugin-related.<\/li>\n\n\n\n<li>Rename the folder back to&nbsp;<code>plugins<\/code>&nbsp;and deactivate all plugins via FTP by renaming individual plugin folders.<\/li>\n\n\n\n<li>Reactivate plugins one by one to identify the problematic plugin.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-check-for-theme-issues\"><strong>Check for Theme Issues<\/strong><\/h4>\n\n\n\n<p>A corrupted or incompatible theme can also cause the WSOD.<\/p>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Access your website files via FTP or File Manager.<\/li>\n\n\n\n<li>Navigate to the&nbsp;<code>wp-content\/themes<\/code>&nbsp;directory.<\/li>\n\n\n\n<li>Rename your active theme folder (e.g.,&nbsp;<code>your-theme<\/code>&nbsp;to&nbsp;<code>your-theme_deactivated<\/code>).<\/li>\n\n\n\n<li>WordPress will automatically switch to a default theme (e.g., Twenty Twenty-Three).<\/li>\n\n\n\n<li>Refresh your website. If it loads, the issue is theme-related.<\/li>\n\n\n\n<li>Reupload a fresh copy of your theme or switch to a different theme.<\/li>\n<\/ol>\n\n\n\n<p>For a detailed guide on testing plugin\/theme conflicts, please check our article:<br>\ud83d\udd0d<a href=\"https:\/\/theeventscalendar.com\/knowledgebase\/testing-for-conflicts\/\">Testing For Conflicts<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-increase-php-memory-limit\"><strong>Increase PHP Memory Limit<\/strong><\/h4>\n\n\n\n<p>If you encounter memory-related errors, such as:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in \/home4\/xxx\/public_html\/wp-includes\/plugin.php on line xxx<\/code><\/pre>\n\n\n\n<p>Insufficient PHP memory can lead to the White Screen of Death. Depending on the number of plugins installed on your site, you may need to adjust the <strong>WP_MEMORY_LIMIT<\/strong> value to ensure optimal performance.<\/p>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Open your&nbsp;<code>wp-config.php<\/code>&nbsp;file via FTP or File Manager.<\/li>\n\n\n\n<li>Add the following line:<br><code>define('WP_MEMORY_LIMIT', '512M');<\/code><\/li>\n\n\n\n<li>Save the file and refresh your website.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-check-for-corrupted-core-files\"><strong>Check for Corrupted Core Files<\/strong><\/h4>\n\n\n\n<p>Missing or corrupted WordPress core files can trigger the White Screen of Death (WSOD), often due to incomplete updates or accidental modifications. If you see an error like the one below, reinstalling WordPress core files or restoring from a backup can help resolve the issue:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Fatal error: require(): Failed opening required '\/home\/user\/public_html\/***'<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">\u26a0\ufe0f Note: If the path in the error points to a plugin file, the issue may lie within the plugin. In that case, reinstall the plugin instead of WordPress core.<\/pre>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Download a fresh copy of WordPress from&nbsp;<a href=\"https:\/\/wordpress.org\/download\/\" target=\"_blank\" rel=\"noreferrer noopener\">wordpress.org<\/a>.<\/li>\n\n\n\n<li>Extract the files and upload them to your server via FTP, excluding the&nbsp;<code>wp-content<\/code>&nbsp;folder and&nbsp;<code>wp-config.php<\/code>&nbsp;file.<\/li>\n\n\n\n<li>Overwrite existing files when prompted.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-contact-your-hosting-provider\"><strong><strong>Contact Your Hosting Provider<\/strong><\/strong><\/h4>\n\n\n\n<p>If none of the above steps work, your hosting provider may be able to help.<\/p>\n\n\n\n<p><strong>Steps to Fix:<\/strong><\/p>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Contact your hosting provider&#8217;s support team.<\/li>\n\n\n\n<li>Provide them with details of the issue and steps you&#8217;ve already taken.<\/li>\n\n\n\n<li>Follow their instructions to resolve the issue.<\/li>\n<\/ol>\n\n\n\n<p>By following these steps, you should be able to resolve the White Screen of Death issue on your WordPress website. Thank you for reading!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The&nbsp;White Screen of Death (WSOD)&nbsp;is a common WordPress issue where your website displays a blank white screen instead of loading properly. This can be caused by various factors, including plugin conflicts, theme errors, or server issues. This guide will walk you through the steps to troubleshoot and resolve the problem. Enable WordPress Debugging Enabling debugging&#8230;<\/p>\n","protected":false},"author":84,"featured_media":1954561,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_swpsp_post_exclude":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"kb-single","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"ep_exclude_from_search":false,"footnotes":""},"categories":[93],"tags":[341,85],"stellar-product-taxonomy":[161],"class_list":["post-1964329","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-errors","tag-general","tag-testing","stellar-product-taxonomy-the-events-calendar"],"acf":[],"taxonomy_info":{"category":[{"value":93,"label":"Troubleshooting"}],"post_tag":[{"value":341,"label":"general"},{"value":85,"label":"testing"}],"stellar-product-taxonomy":[{"value":161,"label":"The Events Calendar"}]},"featured_image_src_large":["https:\/\/images.theeventscalendar.com\/kb\/uploads\/2022\/08\/kb-guide-banner-virtual-events-1024x224.jpeg",1024,224,true],"author_info":{"display_name":"The Events Calendar Team","author_link":"https:\/\/theeventscalendar.com\/knowledgebase\/author\/the_events_calendar_team\/"},"comment_info":0,"category_info":[{"term_id":93,"name":"Troubleshooting","slug":"errors","term_group":0,"term_taxonomy_id":93,"taxonomy":"category","description":"","parent":0,"count":52,"filter":"raw","term_order":"0","cat_ID":93,"category_count":52,"category_description":"","cat_name":"Troubleshooting","category_nicename":"errors","category_parent":0}],"tag_info":[{"term_id":341,"name":"general","slug":"general","term_group":0,"term_taxonomy_id":341,"taxonomy":"post_tag","description":"","parent":0,"count":82,"filter":"raw","term_order":"0"},{"term_id":85,"name":"testing","slug":"testing","term_group":0,"term_taxonomy_id":85,"taxonomy":"post_tag","description":"","parent":0,"count":6,"filter":"raw","term_order":"0"}],"_links":{"self":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/users\/84"}],"replies":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/comments?post=1964329"}],"version-history":[{"count":11,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964329\/revisions"}],"predecessor-version":[{"id":1965116,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/posts\/1964329\/revisions\/1965116"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media\/1954561"}],"wp:attachment":[{"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/media?parent=1964329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/categories?post=1964329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/tags?post=1964329"},{"taxonomy":"stellar-product-taxonomy","embeddable":true,"href":"https:\/\/theeventscalendar.com\/knowledgebase\/wp-json\/wp\/v2\/stellar-product-taxonomy?post=1964329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}