{"id":10186,"date":"2019-07-06T12:08:11","date_gmt":"2019-07-06T12:08:11","guid":{"rendered":"https:\/\/wpproonline.com\/?p=171"},"modified":"2026-02-26T10:49:26","modified_gmt":"2026-02-26T10:49:26","slug":"debugging-tips-for-wordpress-common-errors-and-how-to-fix-them","status":"publish","type":"post","link":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/","title":{"rendered":"Debugging Tips for WordPress: Common Errors and How to Fix Them"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">The most disreputable issue to travel wrong with WordPress is that the White Screen Of Death. This is when you load your website and there\u2019s nothing but a white screen. No code, no errors; nothing. It\u2019s a disheartening thing to see. In this post, we\u2019ll say a way to create WordPress speak to you in addition as a way to resolve most problems.<\/p>\n\n<p><!--more--><\/p>\n\n<h2 class=\"wp-block-heading\">Making WordPress Communicate<\/h2>\n\n<p class=\"wp-block-paragraph\">It\u2019s very common for themes and plugins to have code that is slightly outdated but still perfectly functional. When this happens, PHP issues a warning. By default, PHP warnings are sent to the browser, and appearance considerably like your website is de facto broken, when it\u2019s not. For this reason, WordPress turns off that kind of reporting. On your production server, this is how things should be done. On a staging or development server, you want reporting turned on, so that you can see potential problems.<\/p>\n\n<p class=\"wp-block-paragraph\">In production, one of the side effects of turning off all reporting is that when something really goes wrong, it doesn\u2019t get reported in the browser, it simply renders a plain white screen. In WordPress, this is known as The White Screen Of Death. When this happens, ideally you\u2019ll copy your production site to a development server and work there. In a pinch, you can turn on reporting in production and see the errors right there.<\/p>\n\n<p class=\"wp-block-paragraph\">Let\u2019s take a glance at a way to activate PHP Error reportage in WordPress.<\/p>\n\n<h2 class=\"wp-block-heading\">Turning on PHP Error Reporting in WordPress<\/h2>\n\n<p class=\"wp-block-paragraph\">You\u2019ll need to edit your wp-config.php file. You can either pull it down with FTP, edit, and push back, or use a cPanel editor, or even SSH to your server and edit in real time. Any of these methods will work.<\/p>\n\n<p class=\"wp-block-paragraph\">Once you&#8217;ve got wp-config.php open, seek for this line:<\/p>\n\n<pre><code>define( \u2018WP_DEBUG\u2019, false );<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">That turns off all error reporting. Replace that one line with these lines:<\/p>\n\n<pre><code>\/\/ Enable PHP reporting\ndefine( \u2018WP_DEBUG\u2019, true );\n\/\/ Send error messages to the PHP log file\ndefine( \u2018WP_DEBUG_LOG\u2019, true );\n\/\/ Send error messages to the browser\ndefine( \u2018WP_DEBUG_DISPLAY\u2019, true );\n\/\/ Turn on the PHP config directive to send errors to the browser\n@ini_set( \u2018display_errors\u2019, 1 );<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Then load your browser and you should see something like this:<\/p>\n\n<figure><img decoding=\"async\" src=\"https:\/\/i2.wp.com\/wpproonline.com\/wp-content\/uploads\/2019\/07\/0_8vCK591uiWBHSkmG.png?fit=1024%2C77&amp;ssl=1\" alt=\"\" \/><\/figure>\n\n<blockquote class=\"is-layout-flow wp-block-quote-is-layout-flow\">\n<p><em>NOTE: Savvy readers will notice that this is from Siteground\u2019s Optimizer. There\u2019s nothing wrong with their plugin, I stony-broke it by design for this demonstration.<\/em><\/p>\n<\/blockquote>\n\n<h2 class=\"wp-block-heading\">Reading PHP Messages<\/h2>\n\n<p class=\"wp-block-paragraph\">PHP reporting messages always have 4 parts:<\/p>\n\n<ol class=\"wp-block-list\">\n<li>The type of error. Below we have a syntax error, which would be like a grammar or spelling error in English.<\/li>\n<li>The actual error. Below we have some unexpected text, \u201cSiteground_Optimizer\u2019<\/li>\n<li>The file in which the problem exists<\/li>\n<li>The line number inside that file where you can find the problem.<\/li>\n<\/ol>\n\n<figure><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/wpproonline.com\/wp-content\/uploads\/2019\/07\/0_L-X6ziSufhiclY6O.png?fit=1024%2C263&amp;ssl=1\" alt=\"\" \/><\/figure>\n\n<p class=\"wp-block-paragraph\">The four most common types of messages are<\/p>\n\n<ol class=\"wp-block-list\">\n<li>Fatal Error<\/li>\n<li>Parse Error<\/li>\n<li>Notice<\/li>\n<li>Warning<\/li>\n<\/ol>\n\n<p class=\"wp-block-paragraph\">Notices and Warnings will not stop your site from working and could be hidden by turning off WP_DEBUG. You should try to fix them if you can though, someday they may come back to haunt you.<\/p>\n\n<p class=\"wp-block-paragraph\">Fatal Errors and Parse Errors mean something is really broken, and they prevent your site from functioning.<\/p>\n\n<h2 class=\"wp-block-heading\">How To Recover<\/h2>\n\n<h4 class=\"wp-block-heading\">Deactivate<\/h4>\n\n<p class=\"wp-block-paragraph\">Your first step should always be to try to log into the backend of WordPress. Often the errors are in code that only runs on the front of the site, and you can log into the backend. If this is the case then you can simply deactivate the plugin or theme that\u2019s causing the problem. This doesn\u2019t truly fix the problem, but your site will come back, and that\u2019s a big step.<\/p>\n\n<p class=\"wp-block-paragraph\">In the WordPress admin, go to the Plugins folder, find the plugin that\u2019s causing a problem and click the Deactivate link. Here\u2019s an example:<\/p>\n\n<figure><img decoding=\"async\" src=\"https:\/\/i1.wp.com\/wpproonline.com\/wp-content\/uploads\/2019\/07\/0_hdz4YoE_ucsQbrJu.png?fit=1024%2C437&amp;ssl=1\" alt=\"\" \/><\/figure>\n\n<h4 class=\"wp-block-heading\">Ask For Help<\/h4>\n\n<p class=\"wp-block-paragraph\">Many managed WordPress hosts will work to simply take care of this issue for you. Check with your host to see what your available support options are. They may not be able to actually fix the problem, but they\u2019ll get your site front-end live again and help you understand the real problem so that you can move forward.<\/p>\n\n<h4 class=\"wp-block-heading\">Remove with FTP<\/h4>\n\n<p class=\"wp-block-paragraph\">If you can\u2019t log into the WordPress admin, you can log into your server with FTP. Follow the trail given within the error message and take away the plugin or theme inflicting the matter. I recommend downloading a copy first. The screenshot below uses the CyberDuck FTP client, and it\u2019s pointing at the Jetpack plugin. From there, you could download that folder and then delete it.<\/p>\n\n<figure><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/wpproonline.com\/wp-content\/uploads\/2019\/07\/0_7nnw2U349pRw5Dm6.png?fit=1024%2C906&amp;ssl=1\" alt=\"\" \/><\/figure>\n\n<h4 class=\"wp-block-heading\">Fixing the Real Problem<\/h4>\n\n<p class=\"wp-block-paragraph\">Once you\u2019ve determined the error that broke your site and removed the problem code, you\u2019ll probably want to find out why it broke, fix it, and put it back. You probably had that code for a reason.<\/p>\n\n<p class=\"wp-block-paragraph\">If you did NOT have a good reason for having that code, then you should simply discard it move on.<\/p>\n\n<h2 class=\"wp-block-heading\">Common reasons why code fails.<\/h2>\n\n<h4 class=\"wp-block-heading\">There was an update for the plugin or theme that introduced a bug.<\/h4>\n\n<p class=\"wp-block-paragraph\">Check to see what the latest version of the code is, and compare it to what you have. If it came out just yesterday then there very well could be a bug. You should contact the developer and explain the issue.<\/p>\n\n<h4 class=\"wp-block-heading\">There was a network interruption during a regular update.<\/h4>\n\n<p class=\"wp-block-paragraph\">The internet being what it is sometimes updated simply break in the middle. Try downloading the plugin or theme and uploading it with FTP. If it fixes the problem then an interruption was almost certainly the problem.<\/p>\n\n<h4 class=\"wp-block-heading\">Another plugin updated and introduced incompatible code.<\/h4>\n\n<p class=\"wp-block-paragraph\">This might also be indicated in the error message, but sometimes not. The plugin reporting the error might be perfectly fine, but some other plugin has introduced new code that collides with your good plugin. Perhaps you end up with two different functions named the same thing for example. In that case, you\u2019ll want to look at the update times for all of your plugins, and check the newest ones.<\/p>\n\n<p class=\"wp-block-paragraph\">In the case of a code collision, it\u2019s not really a bug in either plugin, but most times plugin developers want to be compatible with each other, so you should make both authors aware of the issue. Then it\u2019s a race to see who fixes it first.<\/p>\n\n<h4 class=\"wp-block-heading\">You can\u2019t tell<\/h4>\n\n<p class=\"wp-block-paragraph\">Sometimes you simply can\u2019t figure it out, especially if you\u2019re not a developer. It\u2019s perfectly fine to contact support or the developer through whatever means they offer and explain the problem. Often they\u2019ll be able to see the issue right away.<\/p>\n\n<h2 class=\"wp-block-heading\">Staying on top of things<\/h2>\n\n<p class=\"wp-block-paragraph\">You can\u2019t always know ahead of time when changes will be made, but if you have a detailed record of all changes then it goes a long way toward fixing things quickly. I recommend a plugin called WP Stream. It\u2019s a free plugin that tracks every action in WordPress. Every login, every content update, every code update, everything. And it tells who did it, and when.<\/p>\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n<p class=\"wp-block-paragraph\">One of the most important things is getting good communication from WordPress. If you can read the log file, or make WordPress tell you the error, fixing the actual problem is almost always easy.<\/p>\n\n<p class=\"wp-block-paragraph\">I recommend getting a local development environment like Local by Flywheel or DesktopServer and practice breaking things and making the server tell you what\u2019s wrong. Once you get comfortable with broken sites, fixing them becomes a lot less scary.<\/p>\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/digitalhubz.com\/9-reasons-your-wordpress-site-has-slow-response-time\/\" target=\"_blank\" rel=\"noreferrer noopener\">9 Reasons Your WordPress Site Has Slow Response Time<\/a><\/p>\n\n<p class=\"wp-block-paragraph\">\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The most disreputable issue to travel wrong with WordPress is that the White Screen Of Death. This is when you load your website and there\u2019s nothing but a white screen.&hellip;<\/p>\n","protected":false},"author":1,"featured_media":177,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[72],"tags":[71,117,118],"class_list":["post-10186","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wordpress","tag-wordpress","tag-wordpress-common-errors","tag-wp-debugging"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Debugging Tips for WordPress: Common Errors and How to Fix Them - DigitalHubZ<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Debugging Tips for WordPress: Common Errors and How to Fix Them\" \/>\n<meta property=\"og:description\" content=\"The most disreputable issue to travel wrong with WordPress is that the White Screen Of Death. This is when you load your website and there\u2019s nothing but a white screen.&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/\" \/>\n<meta property=\"og:site_name\" content=\"DigitalHubZ\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-06T12:08:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T10:49:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"670\" \/>\n\t<meta property=\"og:image:height\" content=\"335\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DigitalHubZ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DigitalHubZ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/\"},\"author\":{\"name\":\"DigitalHubZ\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\"},\"headline\":\"Debugging Tips for WordPress: Common Errors and How to Fix Them\",\"datePublished\":\"2019-07-06T12:08:11+00:00\",\"dateModified\":\"2026-02-26T10:49:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/\"},\"wordCount\":1239,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/Windows-Error-Messages-Featured-670x335-1.jpg\",\"keywords\":[\"Wordpress\",\"wordpress common errors\",\"wp debugging\"],\"articleSection\":[\"Wordpress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/\",\"name\":\"Debugging Tips for WordPress: Common Errors and How to Fix Them - DigitalHubZ\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/Windows-Error-Messages-Featured-670x335-1.jpg\",\"datePublished\":\"2019-07-06T12:08:11+00:00\",\"dateModified\":\"2026-02-26T10:49:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/Windows-Error-Messages-Featured-670x335-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/Windows-Error-Messages-Featured-670x335-1.jpg\",\"width\":670,\"height\":335},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Debugging Tips for WordPress: Common Errors and How to Fix Them\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"name\":\"DigitalHubZ\",\"description\":\"Future-Ready Digital Solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#organization\",\"name\":\"DigitalHubZ\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"contentUrl\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/digitalhubz.webp\",\"width\":1232,\"height\":369,\"caption\":\"DigitalHubZ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/#\\\/schema\\\/person\\\/5a4074d837d6e5d22d665e5b7ca9e873\",\"name\":\"DigitalHubZ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g\",\"caption\":\"DigitalHubZ\"},\"sameAs\":[\"https:\\\/\\\/digitalhubz.com\"],\"url\":\"https:\\\/\\\/www.digitalhubz.com\\\/blog\\\/author\\\/digi_v1_wp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Debugging Tips for WordPress: Common Errors and How to Fix Them - DigitalHubZ","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/","og_locale":"en_US","og_type":"article","og_title":"Debugging Tips for WordPress: Common Errors and How to Fix Them","og_description":"The most disreputable issue to travel wrong with WordPress is that the White Screen Of Death. This is when you load your website and there\u2019s nothing but a white screen.&hellip;","og_url":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/","og_site_name":"DigitalHubZ","article_published_time":"2019-07-06T12:08:11+00:00","article_modified_time":"2026-02-26T10:49:26+00:00","og_image":[{"width":670,"height":335,"url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg","type":"image\/jpeg"}],"author":"DigitalHubZ","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DigitalHubZ","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#article","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/"},"author":{"name":"DigitalHubZ","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873"},"headline":"Debugging Tips for WordPress: Common Errors and How to Fix Them","datePublished":"2019-07-06T12:08:11+00:00","dateModified":"2026-02-26T10:49:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/"},"wordCount":1239,"commentCount":0,"publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg","keywords":["Wordpress","wordpress common errors","wp debugging"],"articleSection":["Wordpress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/","url":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/","name":"Debugging Tips for WordPress: Common Errors and How to Fix Them - DigitalHubZ","isPartOf":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#primaryimage"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#primaryimage"},"thumbnailUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg","datePublished":"2019-07-06T12:08:11+00:00","dateModified":"2026-02-26T10:49:26+00:00","breadcrumb":{"@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#primaryimage","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2019\/07\/Windows-Error-Messages-Featured-670x335-1.jpg","width":670,"height":335},{"@type":"BreadcrumbList","@id":"https:\/\/www.digitalhubz.com\/blog\/debugging-tips-for-wordpress-common-errors-and-how-to-fix-them\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.digitalhubz.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Debugging Tips for WordPress: Common Errors and How to Fix Them"}]},{"@type":"WebSite","@id":"https:\/\/www.digitalhubz.com\/blog\/#website","url":"https:\/\/www.digitalhubz.com\/blog\/","name":"DigitalHubZ","description":"Future-Ready Digital Solutions","publisher":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.digitalhubz.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.digitalhubz.com\/blog\/#organization","name":"DigitalHubZ","url":"https:\/\/www.digitalhubz.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","contentUrl":"https:\/\/www.digitalhubz.com\/blog\/wp-content\/uploads\/2023\/03\/digitalhubz.webp","width":1232,"height":369,"caption":"DigitalHubZ"},"image":{"@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.digitalhubz.com\/blog\/#\/schema\/person\/5a4074d837d6e5d22d665e5b7ca9e873","name":"DigitalHubZ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/414c5bb85907e15e0f840541718ecc7420d52ea432b33f6a57761a674a52ebb7?s=96&d=mm&r=g","caption":"DigitalHubZ"},"sameAs":["https:\/\/digitalhubz.com"],"url":"https:\/\/www.digitalhubz.com\/blog\/author\/digi_v1_wp\/"}]}},"_links":{"self":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/10186","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/comments?post=10186"}],"version-history":[{"count":4,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/10186\/revisions"}],"predecessor-version":[{"id":54904,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/posts\/10186\/revisions\/54904"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media\/177"}],"wp:attachment":[{"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/media?parent=10186"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/categories?post=10186"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.digitalhubz.com\/blog\/wp-json\/wp\/v2\/tags?post=10186"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}