{"id":2966,"date":"2013-11-12T21:03:17","date_gmt":"2013-11-13T02:03:17","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/11\/12\/fix-fatal-error-allowed-memory-size-exhausted\/"},"modified":"2023-07-07T16:02:24","modified_gmt":"2023-07-07T20:02:24","slug":"fix-fatal-error-allowed-memory-size-exhausted","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/","title":{"rendered":"Fix WordPress Fatal error: Allowed memory size exhausted"},"content":{"rendered":"<p>WordPress can encounter a blank page sometimes, and the most common issue is a <strong>PHP Fatal error<\/strong> regarding the <strong>Allowed memory size of xxxxxxx bytes exhausted<\/strong> and in this guide I\u2019ll show you how to easily fix this problem.<\/p>\n\n\n\n<p><a type=\"button\" href=\"#show-php-error\">Find PHP error behind blank WordPress page<\/a> \u00a0 <a type=\"button\" href=\"#fix-memory-exhausted\">Fix Allowed memory size exhausted error<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"show-php-error\">Find PHP error behind blank WordPress page<\/h2>\n\n\n\n<p>If WordPress is displaying a blank page this typically means that you\u2019ve encountered a <strong>PHP error<\/strong> and your account isn\u2019t setup to display errors. You can use the steps below to ensure you\u2019re seeing the error that\u2019s causing your blank page.<\/p>\n\n\n\n<p>If you\u2019d like more in-depth information you can also review our guide on <a href=\"\/support\/website\/troubleshoot-php-errors\/\" target=\"_blank\" rel=\"noopener noreferrer\">displaying and logging errors in PHP<\/a>.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li><a href=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-blank.png\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; width: 190px; margin-left: 15px;\" src=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-blank.png\" alt=\"wordpress dashboard blank\"><\/a>Navigate to the WordPress page that is coming up blank, in this case it is our WordPress dashboard at <strong>\/wp-admin<\/strong> causing issues.<\/li><li style=\"clear: both;\">\n<p>You\u2019ll want to modify your <a href=\"\/support\/website\/update-local-php-settings\/\" target=\"_blank\" rel=\"noopener noreferrer\">php.ini<\/a> file and also ensure that you <a href=\"\/support\/website\/recursive-php-ini\/\" target=\"_blank\" rel=\"noopener noreferrer\">make your php.ini file recursive<\/a>.<\/p>\n<p>Your <strong>php.ini<\/strong> file should be located in your <strong>\/public_html<\/strong> directory, if it is not you can create one.<\/p>\n<p>To make your <strong>php.ini<\/strong> settings recursive and take place across your entire account you\u2019ll want to modify or create a <strong>.htaccess<\/strong> file in your <strong>\/public_html<\/strong> directory with the following code:<\/p>\n<p><\/p><pre>SuPHP_ConfigPath \/home\/<strong style=\"color: red;\">userna5<\/strong>\/public_html<\/pre>\n<p>In this case <strong style=\"color: red;\">userna5<\/strong> is our cPanel username and with the <strong>SuPHP_ConfigPath<\/strong> command we are telling the server where to load the <strong>php.ini<\/strong> file for our account.<\/p>\n<\/li><li>Now you\u2019ll want to edit your <strong>php.ini<\/strong> file with the following settings: <pre>display_errors = On<\/pre><a href=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-showing-memory-error.png\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; width: 190px;\" src=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-showing-memory-error.png\" alt=\"wordpress dashboard showing memory error\"><\/a>\n<p style=\"margin-top: 30px;\">Save the <strong>php.ini<\/strong> file and then refresh your blank WordPress page again, and this time you should see an error.<\/p>\n<p><code>Fatal error: Allowed memory size of 1048576 bytes exhausted (tried to allocate 122880 bytes) in \/home\/example\/public_html\/wordpress\/wp-admin\/includes\/dashboard.php on line 546<\/code><\/p>\n<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"fix-memory-exhausted\">Fix WordPress Fatal error: Allowed memory size exhausted<\/h2>\n\n\n\n<p>Once you\u2019ve determined the actual PHP error that you\u2019re getting, the most common one you\u2019ll run across is exhausting the memory allowed for a PHP script to run.<\/p>\n\n\n\n<p>The steps below will walk you through making sure you have a large enough <strong>memory_limit<\/strong> for <strong>PHP<\/strong> set in your <strong>php.ini<\/strong> file, and how to use the <strong>WP_MEMORY_LIMIT<\/strong> variable in your <strong>wp-config.php<\/strong> file if that isn\u2019t working.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li>Take <strong style=\"color: red;\">note<\/strong> of the error you\u2019re getting, and how much memory is trying to be allowed:<br><p><code>Fatal error: Allowed memory size of <strong style=\"color: red;\">1048576 bytes exhausted<\/strong> (tried to <strong style=\"color: red;\">allocate 122880 bytes<\/strong>) in <strong style=\"color: red;\">\/home\/example\/public_html\/wordpress\/wp-admin\/includes\/dashboard.php<\/strong> on line 546<\/code><\/p> <p>\u00a0<\/p> <table class=\"article_table\" style=\"width: 665px; position: relative; right: 55px;\"> <tbody> <tr> <th style=\"width: 50px;\">Allowed memory size<\/th> <th style=\"width: 50px;\">Tried to allocate<\/th> <th style=\"width: 50px;\">Filename causing memory problems<\/th> <\/tr> <tr> <td>1048576 bytes<\/td> <td>122880 bytes<\/td> <td>\/home\/example\/public_html\/wordpress\/wp-admin\/includes\/dashboard.php<\/td> <\/tr> <tr> <td>1 MB<\/td> <td>120 KB<\/td> <td>\u00a0<\/td> <\/tr> <\/tbody> <\/table> <p style=\"margin-top: 15px;\">Here we can see <strong>PHP<\/strong> is allowed to use up to <strong>1 MB<\/strong> of memory, and it\u2019s exhausting this limit by the time it gets to our <strong>dashboard.php<\/strong> script on line <strong>546<\/strong> which is trying to allocate an additional <strong>120 KB<\/strong><\/p> <\/li>\n\n\n\n<li> <p>Now you\u2019ll want to take a look at your <a rel=\"noopener noreferrer\" href=\"\/support\/website\/update-local-php-settings\/\" target=\"_blank\">php.ini file<\/a> and raise your <strong>memory_limit<\/strong> setting:<\/p> <pre class=\"code_block\">;;;;;;;;;;;;;;;;;;; ; Resource Limits ; ;;;;;;;;;;;;;;;;;;;   max_execution_time = 30  max_input_time = 60  <strong style=\"color: red;\">memory_limit = 1M<\/strong><\/pre> <p>You see that I\u2019ve only got it set to <strong>1 M<\/strong> which is causing our PHP error, and I can simply raise it some:<\/p> <pre><strong style=\"color: red;\">memory_limit = 32M<\/strong><\/pre> <\/li>\n\n\n\n<li><a rel=\"lightbox-0\" href=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-fixed.png\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; width: 190px;\" src=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/wordpress-dashboard-fixed.png\" alt=\"wordpress dashboard fixed\"><\/a>Now you\u2019ll want to verify your <strong>php.ini<\/strong> settings are <a rel=\"noopener noreferrer\" href=\"\/support\/website\/recursive-php-ini\/\" target=\"_blank\">recursive<\/a> and then try to access your WordPress website again. You should get your admin normal dashboard disaplying now.<\/li>\n\n\n\n<li> <p>If you\u2019re still getting a <strong>memory exhausted<\/strong> error verify your <strong>php.ini<\/strong> setting is being read by setting up a phpinfo() page that can simply be named <strong>info.php<\/strong> inside your WordPress directory and look like:<\/p> <pre>&lt;?php phpinfo(); ?&gt;<\/pre> <figure><a rel=\"lightbox-0\" href=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/phpinfo-page-showing-memory-limit.png\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; width: 190px; margin-left: 35px;\" src=\"\/support\/images\/stories\/wordpress\/memory-size-exhausted\/phpinfo-page-showing-memory-limit.png\" alt=\"phpinfo page showing memory limit\"><\/a><\/figure> <p style=\"margin-top: 15px;\">Access the <strong>info.php<\/strong> script you created in your web-browser, then hit <strong>Ctrl-F<\/strong> and do a search and look for <strong>memory_limit<\/strong> and make sure it matches what you set for this variable.<\/p> <\/li>\n\n\n\n<li>If this still isn\u2019t working for you, as a last resort you can add <strong>define(\u2018WP_MEMORY_LIMIT\u2019, \u201932M\u2019);<\/strong> towards the top of your <strong>wp-config.php<\/strong> file: <pre><strong style=\"color: red;\">define('WP_MEMORY_LIMIT', '32M');<\/strong><\/pre> <p style=\"margin-top: 15px;\">This is also covered in the official WordPress documentation for <a rel=\"noopener noreferrer\" href=\"https:\/\/codex.wordpress.org\/Editing_wp-config.php#Increasing_memory_allocated_to_PHP\" target=\"_blank\">increasing memory allocated to PHP<\/a>.<\/p> <\/li>\n<\/ol>\n\n\n\n<p>You should hopefully now not be encountering any further WordPress memory related errors. If these steps didn\u2019t help resolve your particular issue, please leave a comment so that we can keep adding different errors to it to help others. You can also consider our <a href=\"https:\/\/www.inmotionhosting.com\/wordpress-hosting\" target=\"_blank\" rel=\"noopener noreferrer\">WordPress hosting plans<\/a> for Nginx caching options specifically for WordPress performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I\u2019ll show you how to easily fix this problem. Find PHP error behind blank WordPress page \u00a0 Fix Allowed memory size exhausted error Find PHP<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4335,4325,56],"tags":[],"class_list":["post-2966","post","type-post","status-publish","format-standard","hentry","category-error-numbers","category-wordpress-hosting","category-wordpress"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fix the Allowed memory size exhausted in WordPress<\/title>\n<meta name=\"description\" content=\"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I&#039;ll show you how to easily fix this problem.\" \/>\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.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fix the Allowed memory size exhausted in WordPress\" \/>\n<meta property=\"og:description\" content=\"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I&#039;ll show you how to easily fix this problem.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-11-13T02:03:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-07T20:02:24+00:00\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Fix WordPress Fatal error: Allowed memory size exhausted\",\"datePublished\":\"2013-11-13T02:03:17+00:00\",\"dateModified\":\"2023-07-07T20:02:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\"},\"wordCount\":699,\"commentCount\":16,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Website Error Numbers\",\"WordPress Hosting\",\"WordPress Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\",\"name\":\"Fix the Allowed memory size exhausted in WordPress\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2013-11-13T02:03:17+00:00\",\"dateModified\":\"2023-07-07T20:02:24+00:00\",\"description\":\"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I'll show you how to easily fix this problem.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fix WordPress Fatal error: Allowed memory size exhausted\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fix the Allowed memory size exhausted in WordPress","description":"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I'll show you how to easily fix this problem.","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.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/","og_locale":"en_US","og_type":"article","og_title":"Fix the Allowed memory size exhausted in WordPress","og_description":"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I'll show you how to easily fix this problem.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-11-13T02:03:17+00:00","article_modified_time":"2023-07-07T20:02:24+00:00","author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Fix WordPress Fatal error: Allowed memory size exhausted","datePublished":"2013-11-13T02:03:17+00:00","dateModified":"2023-07-07T20:02:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/"},"wordCount":699,"commentCount":16,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Website Error Numbers","WordPress Hosting","WordPress Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/","name":"Fix the Allowed memory size exhausted in WordPress","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2013-11-13T02:03:17+00:00","dateModified":"2023-07-07T20:02:24+00:00","description":"WordPress can encounter a blank page sometimes, and the most common issue is a PHP Fatal error regarding the Allowed memory size of xxxxxxx bytes exhausted and in this guide I'll show you how to easily fix this problem.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/fix-fatal-error-allowed-memory-size-exhausted\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Fix WordPress Fatal error: Allowed memory size exhausted"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":56,"name":"WordPress Tutorials","slug":"wordpress","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/wordpress\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2966","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2966"}],"version-history":[{"count":13,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2966\/revisions"}],"predecessor-version":[{"id":105542,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2966\/revisions\/105542"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2966"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2966"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2966"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}