{"id":139817,"date":"2019-08-30T14:56:05","date_gmt":"2019-08-30T19:56:05","guid":{"rendered":"https:\/\/getflywheel.com\/layout\/?p=36610"},"modified":"2025-05-12T13:59:46","modified_gmt":"2025-05-12T18:59:46","slug":"wordpress-white-screen-of-death","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/","title":{"rendered":"How to Fix the WordPress White Screen of Death"},"content":{"rendered":"\n<p>There are few things worse than loading your website and seeing a blank, white screen. No error message, no clear problem, just the white screen of death.<br><\/p>\n\n\n\n<p>The white screen of death remains one of the most common WordPress errors. The worst part may be that it can make your WordPress site inaccessible to not only visitors, but administrators too.<\/p>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-css-opacity\"\/>\n\n\n\n\n\n<h2 class=\"wp-block-heading\">What is the white screen of death?&nbsp;<\/h2>\n\n\n\n<p>The white screen of death shows up when an error takes place in a website\u2019s PHP or database. This type of error might also appear as a message, \u201cThis page isn\u2019t working and is unable to handle the request,\u201d or \u201cSite is experiencing technical difficulties.\u201d This is known as an HTTP 500 error.&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel.com\/layout\/wp-content\/uploads\/2019\/08\/new-http-1-784x423.jpg\" alt=\"screenshot of a webpage displaying an internal server error\" class=\"wp-image-36714\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-css-opacity\"\/>\n\n\n\n<p>Luckily, the white screen of death <em>can<\/em> be fixed! The first step is usually determining exactly why the error occurred. The HTTP 500 error is a sort of a generic catch-all for errors that don\u2019t fit in other categories. This means there are tons of possible causes, including out-of-memory issues, mistakes in server configuration, unhandled exceptions, code errors, plugin\/theme conflicts, and more.&nbsp;<\/p>\n\n\n\n<p>The fix you need will depend on the exact nature of the error, so the first step of troubleshooting an HTTP 500 error on a WordPress site is to determine its exact cause. In this article, we\u2019ll discuss some of the most common causes for these errors and highlight the solutions for each, including disabling themes and plugins, using a backup, increasing your site\u2019s memory, resolving syntax errors in your code, fixing file permission issues, updating WordPress, and using the WordPress debugging tools.<\/p>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">How to fix the white screen of death by disabling WordPress themes and plugins<\/h2>\n\n\n\n<p>A lot of times, a WordPress site goes down because there\u2019s a plugin conflict or a plugin isn\u2019t supported by the version of PHP running on the server. Think about the last 24 hours: Were any new themes or plugins installed on the site? Disabling a recently downloaded plugin or switching themes is often the best place to start, and it\u2019s a relatively simple fix.&nbsp;<\/p>\n\n\n\n<p><strong>If you have access to wp-admin\u2026<\/strong><\/p>\n\n\n\n<p>Log in and disable the plugin or theme you think may be causing the problem. Once it\u2019s deactivated, do a hard refresh on your site. If it loads, you\u2019ve found the culprit! If you\u2019re still seeing the white screen of deathWSoD, you have two options: you can either disable a different theme or plugin, or you might have a different cause behind your HTTP 500 error.&nbsp;<\/p>\n\n\n\n<p><strong>If you don\u2019t have access to wp-admin\u2026<\/strong><\/p>\n\n\n\n<p>It\u2019s still possible to disable your themes and plugins via SFTP. Connect to your website, and navigate to the <em>wp-content<\/em> folder. This is where you\u2019ll find all your site\u2019s theme and plugin files. By renaming the files, you can deactivate the theme or plugin on your site. After you\u2019ve made a change, do a hard refresh on your site. If it loads, that means you found the correct plugin, and you should now be able to log into wp-admin again).&nbsp;<\/p>\n\n\n\n<p><strong>Pro tip: <\/strong>Sometimes the problem isn\u2019t a single plugin, but how they\u2019re interacting with one another. To rule this out, disable all plugins and see if your WordPress site reappears. If it does, reinstall the plugins one at a time, refreshing your site after each installation. When your site disappears again, you\u2019ve likely found the culprit.&nbsp;<\/p>\n\n\n\n<p>Beyond conflicts, outdated WordPress plugins can sometimes cause HTTP 500 errors. If you\u2019ve been putting off updates, we recommend running those to ensure your plugins and theme are up to date.&nbsp;<\/p>\n\n\n\n<p>While you could turn on automatic updates, this may cause issues of its own if the updated plugin or theme has a conflict or bug. This is one area where the right managed host can really help. WP Engine\u2019s <a href=\"https:\/\/wpengine.com\/support\/smart-plugin-manager\/\">Smart Plugin Manager <\/a>solves this by checking that all updates work as expected and don\u2019t cause any visual problems on your site. If the update does cause an issue, Smart Plugin Manager automatically rolls it back and restores your site.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to fix the white screen of death by resolving syntax errors<\/h2>\n\n\n\n<p>Syntax errors are typically caused by a mistake in your code syntax. You may have accidentally mistyped or pasted in the wrong syntax, and that caused the white screen error. Very often, you can resolve these by simply undoing whatever it was you just did that caused the error.&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel.com\/layout\/wp-content\/uploads\/2019\/08\/syntax-784x410.jpg\" alt=\"\" class=\"wp-image-36715\"\/><\/figure>\n\n\n\n<p>Things get a little trickier in situations where the syntax error wasn\u2019t directly caused by you. It\u2019s possible that a theme or plugin is throwing this error due to outdated or conflicting code. The nice thing is that the error itself will give you a big clue as to which plugin or theme is causing the issue, by listing the exact file where the issue is.&nbsp;<\/p>\n\n\n\n<p>The easiest way to resolve syntax errors caused by themes or plugins is to roll your site back to the version before the white screen of death. This pushes your site back and restores it to the last backup before the errors were made, rather than having to jump in and edit the code.&nbsp;<\/p>\n\n\n\n<p>Another way to resolve syntax errors would be to edit the file(s) mentioned in the syntax error. Typically, a syntax error will reference a file along with the line of code in which the error is found. While the error message tells you exactly where the error is, you\u2019ll need sharp PHP skills if you want to fix it.&nbsp;<\/p>\n\n\n\n<p><strong>To edit the impacted file(s), you can take two different approaches:&nbsp;<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download the impacted files via FTP or SFTP, depending on your server settings<\/li>\n\n\n\n<li>Use a tool offered by your web host to edit a file directly on the server<\/li>\n<\/ol>\n\n\n\n<p>An FTP client is an application that helps you connect to your website and transfer files using the FTP protocol. Some free solutions include <a href=\"https:\/\/filezilla-project.org\/\"><strong>Filezilla<\/strong><\/a> and <a href=\"https:\/\/cyberduck.io\/download\/\"><strong>Cyberduck<\/strong><\/a>. Once you\u2019ve downloaded the impacted file(s), try to determine the source of the error based on the line code in a text editor, such as <a href=\"https:\/\/www.sublimetext.com\/\"><strong>Sublime<\/strong><\/a>. Once you believe you\u2019ve corrected the syntax error, upload the file back to your server via FTP. Hard refresh your site to see if your site returns to its normal state.<\/p>\n\n\n\n<p>The second option is available if your web host offers a tool to edit a file directly on the server through an online file management tool. If they offer a tool of this nature, you can log in, find the file, make the necessary changes, then save.<\/p>\n\n\n\n<p><strong>Pro tip:<\/strong> You can avoid a white screen of death caused by syntax errors by making site updates in a local environment or on a <a href=\"https:\/\/wpengine.com\/resources\/what-is-a-staging-site-why-have-one\/\">staging site<\/a>, instead of your live site. <a href=\"https:\/\/wpengine.com\/local\/\"><strong>Local<\/strong><\/a> is a free solution specifically for WordPress sites that makes it easy to pull a copy of your site for offline editing and push changes live to production.<\/p>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress debugging tools<\/h2>\n\n\n\n<p>WordPress comes with specific debugging systems designed to simplify the process as well as standardize code across the core software, plugins, and themes. Think of debugging as a roadmap to see where an error is coming from and what the root cause is.&nbsp;<\/p>\n\n\n\n<p>To use WordPress&#8217;s built-in debugging tools, you&#8217;ll need to enable debug mode by editing your <em>wp-config.php<\/em> file. Note that changing this file can have severe ramifications, so make sure you\u2019re working locally or on a staging site before you try this.&nbsp;&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define('WP_DEBUG', true);\ndefine('WP_DEBUG_DISPLAY', false);\ndefine('WP_DEBUG_LOG', true);\n\n\n<\/code><\/pre>\n\n\n\n<p>Here\u2019s what\u2019s going on:&nbsp;&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>`WP_DEBUG` enables debug mode, which allows WordPress to display error messages and warnings.&nbsp;<\/li>\n\n\n\n<li>`WP_DEBUG_DISPLAY` controls whether error messages are displayed on the screen or logged to a file instead. If you set it to `true`, error messages will be displayed on the screen, but if you set it to `false`, they&#8217;ll be logged to a file instead.&nbsp;<\/li>\n\n\n\n<li>`WP_DEBUG_LOG` enables logging of error messages to a file named `debug.log` in the `wp-content` directory.<\/li>\n<\/ul>\n\n\n\n<p>It&#8217;s worth noting that enabling debug mode can pose a security risk, as error messages can reveal sensitive information about your site. So, make sure to disable debug mode when you&#8217;re done troubleshooting. Additionally, debug mode can slow down your site, as WordPress will be logging and displaying error messages.<\/p>\n\n\n\n<p>When you&#8217;re ready to view the debug logs, simply look for the `debug.log` file in the `wp-content` directory and open it in a text editor. You can also use a log viewer tool to help you navigate and filter the log messages. As you review the logs, focus on error messages that are relevant to the issue you&#8217;re trying to troubleshoot. Remember to disable debug mode when you&#8217;re done to avoid performance issues and security risks.You can find more information on the WordPress debugging tools <a href=\"https:\/\/wordpress.org\/support\/article\/debugging-in-wordpress\/\"><strong>here.<\/strong><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to fix the white screen of death by using a backup of your site<\/h2>\n\n\n\n<p>If you discover a white screen of death error soon enough, one of the easiest ways to get rid of it is to roll your site back to a recent backup before the error occurred. This process can help you pinpoint when the error started, so it\u2019s easier to identify what changed and potentially caused the HTTP 500 error.&nbsp;<\/p>\n\n\n\n<p>Even if you don\u2019t personally take backups of your site, most <a href=\"https:\/\/wpengine.com\/ca\/wordpress-hosting\/\">managed hosting<\/a> providers automatically run backups of your site and offer a restoration process. If your site is hosted on WP Engine, we take a backup of your site every night and store the last 30 days of backups. You can quickly and easily restore a backup on your own right from the WordPress dashboard. If your site is hosted with a different provider, try contacting them to request a restore.&nbsp;<\/p>\n\n\n\n<p>Once you\u2019ve rolled your site back, you\u2019ll still need to find what caused the error in the first place. Was it a new plugin on the site? An update that didn\u2019t finish correctly? While getting rid of the white screen of death with a backup is good (your site is back up!), remember to take the next step of determining what the cause was, so you don\u2019t repeat the same situation.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to fix the white screen of death by increasing your site\u2019s memory<\/h2>\n\n\n\n<p>Sometimes an HTTP 500 error is caused because your site has maxed out its allocated memory. If you\u2019re getting an error that says \u201cAllowed memory size of xxxxxx bytes exhausted,\u201d that means your site is running out of memory while trying to execute a script or process. This can happen when a plugin, theme, or script requires more memory than what&#8217;s allocated to PHP on your server.<\/p>\n\n\n\n<p>There are several reasons why you might see this error. It\u2019s possible that the default memory limit set by your hosting provider or server configuration might be too low for your WordPress site&#8217;s needs, or that the site is experiencing a huge spike in traffic or concurrent requests. In these cases, the solution is to allocate more memory.&nbsp;<\/p>\n\n\n\n<p><strong>Note: <\/strong>Most managed hosts that specialize in WordPress take care of this for you, since it\u2019s a server-level setting. If your site is hosted on WP Engine, just <a href=\"https:\/\/wpengine.com\/contact\/\"><strong>send our support team a message<\/strong><\/a> that you need your site\u2019s memory increased and we\u2019ll get it patched up.\u00a0<\/p>\n\n\n\n<p>The manual solution for this is assigning more PHP memory to the application. This can be done through the `wp-config.php` file on many installs; just add the following code to the file:<\/p>\n\n\n\n<p><strong>To increase PHP memory to 64MB:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define( 'WP_MEMORY_LIMIT', '64M' );<\/code><\/pre>\n\n\n\n<p><strong>To increase PHP memory to 96MB:&nbsp;<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define( 'WP_MEMORY_LIMIT', '96M' );<\/code><\/pre>\n\n\n\n<p><strong>Note:<\/strong> For security reasons, WP Engine locks down your <em>wp-config.php<\/em> file and doesn\u2019t allow changes to be made directly to it. We do this because it\u2019s auto-generated by our software and practically everything you\u2019d want to do there is automatically configured for you.<\/p>\n\n\n\n<p>WordPress will automatically check if PHP has been allocated less memory than the entered value before utilizing this function. For example, if PHP has been allocated 64MB, there\u2019s no need to set this value to 64M as WordPress will automatically use all 64MB if need be.<\/p>\n\n\n\n<p>Keep in mind that the allocated memory may not be the underlying issue if you\u2019re seeing this error. Inefficient code or database queries can cause memory usage to skyrocket, and these may persist no matter how much you increase allocated memory.&nbsp;<\/p>\n\n\n\n<p>The details of exactly how to fix these issues are outside the scope of this article, but we\u2019ll get you started. The first step to optimizing your database queries is to identify the slow ones that are hogging memory. A plugin like <a href=\"https:\/\/en-ca.wordpress.org\/plugins\/query-monitor\/\">Query Monitor<\/a> is very helpful in both identifying and optimizing these.<\/p>\n\n\n\n<p>If the issue is concurrent requests, consider implementing <a href=\"https:\/\/wpengine.com\/support\/cache\/\">caching<\/a> to reduce the load on your server. In addition, look into using a <a href=\"https:\/\/wpengine.com\/support\/how-does-a-cdn-work\/\">Content Delivery Network<\/a> (CDN) to distribute static assets and reduce server load.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"file\">How to fix the white screen of death by identifying file permission issues<\/h2>\n\n\n\n<p>Having incorrect file and folder permissions can cause errors on your WordPress site during upload, resulting in the white screen of death. File and folder permissions tell the server who can read, run, or modify files hosted on your account. Typically, WordPress will warn you that it can\u2019t edit a file, create a folder, or write to disk. However, sometimes you may not see an error message.&nbsp;<\/p>\n\n\n\n<p>To check what file and folder permissions your site has, connect to your site via FTP.&nbsp; Once you\u2019re connected, go to the root folder of your WordPress site.&nbsp;<\/p>\n\n\n\n<p>From there, select all folders in the root directory and right-click to select \u201cFile Permissions.\u201d A new box should pop up with a numeric value. The recommended value is \u201c755,\u201d so if you\u2019re seeing something different, go ahead and change it. Click the \u201cRecurse into subdirectories\u201d checkbox and then select the\u201cApply to directories only\u201d option. Click \u201cOk.\u201d Your FTP client will start setting file permissions to folders and subfolders, so give it a few minutes to finish up.&nbsp;<\/p>\n\n\n\n<p>Next, select all the files and folders within the root folder of your WordPress site and right-click to select \u201cFile permissions.\u201d This time, the numeric value in the file permissions box should be \u201c644.\u201d If it\u2019s something different, enter the new value, click on the \u201cRecurse into subdirectories\u201d checkbox, and then select the \u201cApply to files only\u201d option. Click \u201cOk\u201d to continue.&nbsp;<\/p>\n\n\n\n<p>Now, your FTP client will start setting file permission for all the files on your WordPress site. Give this a few minutes to finish up and then hard refresh.&nbsp;<\/p>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"update\">How to fix the white screen of death by completing a WordPress update<\/h2>\n\n\n\n<p>Sometimes WordPress runs into an issue with updates. Most of the time, it resolves itself, but occasionally it leads to the white screen of death.&nbsp;<\/p>\n\n\n\n<p><strong>There are two ways to complete a WordPress update:&nbsp;<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Deleting the <em>.maintenance<\/em> file<\/li>\n\n\n\n<li>Manually updating<\/li>\n<\/ol>\n\n\n\n<p>The first step is to go into your WordPress root directory and see if there\u2019s a <em>.maintenance<\/em> file. The name begins with a dot, which means it\u2019s a hidden file. If you don\u2019t see it using your FTP program, try logging into your server\u2019s control panel and using the file manager to find and delete it. After deleting that file, load up your site again. If the update was successful, and WordPress just failed to remove that file automatically, your site will load like normal.<\/p>\n\n\n\n<p>If you\u2019re still seeing problems, there\u2019s a chance the update wasn\u2019t successful. In this case, you may need to manually run the update.<\/p>\n\n\n\n<hr class=\"wp-block-separator aligncenter has-css-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p>The white screen of death can be caused by a number of problems. While getting your site back up and running as soon as possible is important, keep in mind that understanding the problem and why it happened can prevent future HTTP 500 errors. With these steps, you\u2019ll be able to get your site back up and running in little to no time!&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are few things worse than loading your website and seeing a blank, white screen. No error message, no clear problem, just the white screen of death. The white screen of death remains one of the most common WordPress errors. The worst part may be that it can make your WordPress site inaccessible to not<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":141778,"template":"","resource-topic":[901],"resource-role":[896,897],"resource-type":[916],"class_list":["post-139817","resource","type-resource","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Fix the WordPress White Screen of Death<\/title>\n<meta name=\"description\" content=\"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fix the WordPress White Screen of Death\" \/>\n<meta property=\"og:description\" content=\"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Engine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/wpengine\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-12T18:59:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2019\/08\/wsod-header.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1100\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"How to Fix the WordPress White Screen of Death\" \/>\n<meta name=\"twitter:description\" content=\"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2019\/08\/wsod-header.png\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"13 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/\",\"name\":\"How to Fix the WordPress White Screen of Death\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2019-08-30T19:56:05+00:00\",\"dateModified\":\"2025-05-12T18:59:46+00:00\",\"description\":\"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wpengine.com\/case-studies\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\/\/wpengine.com\/case-studies\/resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Fix the WordPress White Screen of Death\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\",\"url\":\"https:\/\/wpengine.com\/case-studies\/\",\"name\":\"WP Engine\",\"description\":\"Managed Hosting for WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085\",\"name\":\"WP Engine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"caption\":\"WP Engine\"},\"sameAs\":[\"https:\/\/wpengine.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fix the WordPress White Screen of Death","description":"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"How to Fix the WordPress White Screen of Death","og_description":"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2025-05-12T18:59:46+00:00","og_image":[{"width":1100,"height":500,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2019\/08\/wsod-header.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_title":"How to Fix the WordPress White Screen of Death","twitter_description":"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!","twitter_image":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2019\/08\/wsod-header.png","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/","name":"How to Fix the WordPress White Screen of Death","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2019-08-30T19:56:05+00:00","dateModified":"2025-05-12T18:59:46+00:00","description":"See our different answers to your WordPress WSoD problem to get your site back up and running as soon as possible!","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/wordpress-white-screen-of-death\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpengine.com\/case-studies\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/wpengine.com\/case-studies\/resources\/"},{"@type":"ListItem","position":3,"name":"How to Fix the WordPress White Screen of Death"}]},{"@type":"WebSite","@id":"https:\/\/wpengine.com\/case-studies\/#website","url":"https:\/\/wpengine.com\/case-studies\/","name":"WP Engine","description":"Managed Hosting for WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085","name":"WP Engine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","caption":"WP Engine"},"sameAs":["https:\/\/wpengine.com"]}]}},"acf":[],"grid_image_url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2019\/08\/wsod-grid.png","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Developer, Freelancer","topic":"<strong>Topics:<\/strong> WordPress","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/139817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource"}],"about":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/types\/resource"}],"author":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/users\/1"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media\/141778"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=139817"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=139817"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=139817"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=139817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}