{"id":2171,"date":"2024-09-30T12:30:00","date_gmt":"2024-09-30T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2171"},"modified":"2024-08-27T09:38:08","modified_gmt":"2024-08-27T14:38:08","slug":"max_execution_time-guide","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/","title":{"rendered":"PHP max_execution_time Guide: What is the default limit, and how can it be increased?"},"content":{"rendered":"\n<div id=\"linux-3999752874\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>This tutorial will explain the PHP value max_execution_time and its use.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">What is PHP max_execution_time?<\/h2>\n\n\n\n<p>The PHP <strong>max_execution_time<\/strong> is a PHP value that sets the maximum time in seconds a script is allowed to run before the system terminates it. The default limit is <strong>30 seconds<\/strong>. Since every installation of PHP usually has predefined values, these values are not appropriate for most websites, which need different values.<\/p>\n\n\n\n<p>On non-windows systems, the maximum execution time is unaffected by system calls, stream operations, etc. Sometimes, the web server has other limitations that can interrupt the PHP execution. Apache has a timeout directive set to 300 seconds. Every web server has its specific details.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How do we increase the PHP max_execution_time?<\/h2>\n\n\n\n<p>If you are facing issues related to PHP script timeout, then most probably, the max execution time is using the default value of 30 seconds, and that is not enough for the script to be executed. The max execution time hits the limit when the script cannot process the data that fast. There are different ways to change the value for max execution time, depending on where we want to change it, for example, in the code directly, in the .htaccess file, or the php.ini file.<\/p>\n\n\n\n<p><strong>Change PHP max_execution time in the code:<\/strong> To change the code directly, we must use the function <strong>set_time_limit (n)<\/strong> or <strong>ini_set(&#8216;max_execution_time&#8217;). Here is one example of how to do it:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\n<strong>set_time_limit(40);<\/strong>\n\nwhile ($i&lt;=10)\n{\n        echo \"i=$i \";\n        sleep(100);\n        $i++;\n}\n\n?&gt;\n<\/pre>\n\n\n\n<p>In this example, we set the max execution time to 20, allowing the while loop to execute successfully. The other way is with the <strong>ini_set(&#8216;max_execution_time&#8217;,n)<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;?php\n\n<strong>ini_set('max_execution_time',40);<\/strong>\n\nwhile ($i&lt;=10)\n{\n        echo \"i=$i \";\n        sleep(100);\n        $i++;\n}\n\n?&gt;\n<\/pre>\n\n\n\n<p>In both cases, the functions for max execution time will not count the time cost of sleep.<\/p>\n\n\n\n<p><strong>Increase PHP max execution time in .htaccess<\/strong>: To increase the PHP max execution time in the .htaccess file, you need to paste the following lines of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php_value max_execution_time 100<\/pre>\n\n\n\n<p><strong>Increase max execution time in php.ini:<\/strong> To increase the PHP max execution time in the <strong>php.ini<\/strong> file you need to use the following line of code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">max_execution_time = 100<\/pre>\n\n\n\n<p>The previous paragraph taught us to increase the PHP max_execution_time directly in the code, .htacces, and php.ini files. Nowadays, there are control panels on the server to simplify the work of system admins. Every control panel has its way of increasing it, but the purpose is the same. The control panels in the background use the same functions we mentioned above.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>That\u2019s it. You learned what PHP max execution time is, what the default limit is, and how to increase it. If you plan to host a PHP application and have an issue with timeout about the scripts, you do not have to do this alone. You can sign up to one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">server management plans<\/a> and submit a support ticket. Our admins will help you with any aspect of the PHP values. Changing them according to the needs of your website.<\/p>\n\n\n\n<p>PS. If you liked this post, please share it with your friends or leave a comment below. Thank you.<\/p><div id=\"linux-2861752517\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This tutorial will explain the PHP value max_execution_time and its use.<\/p>\n","protected":false},"author":1,"featured_media":2188,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[288,4],"class_list":["post-2171","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","tag-max_execution-time","tag-php"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>max_execution_time Guide for PHP | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"max_execution_time Guide for PHP | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-30T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"PHP max_execution_time Guide: What is the default limit, and how can it be increased?\",\"datePublished\":\"2024-09-30T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/\"},\"wordCount\":531,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-increase-php-max-execution-time.webp\",\"keywords\":[\"max_execution-time\",\"php\"],\"articleSection\":[\"Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/\",\"name\":\"max_execution_time Guide for PHP | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-increase-php-max-execution-time.webp\",\"datePublished\":\"2024-09-30T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-increase-php-max-execution-time.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/09\\\/how-to-increase-php-max-execution-time.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Add PHP max_execution_time\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/max_execution_time-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP max_execution_time Guide: What is the default limit, and how can it be increased?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"max_execution_time Guide for PHP | LinuxHostSupport","description":"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.","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:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/","og_locale":"en_US","og_type":"article","og_title":"max_execution_time Guide for PHP | LinuxHostSupport","og_description":"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.","og_url":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2024-09-30T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"PHP max_execution_time Guide: What is the default limit, and how can it be increased?","datePublished":"2024-09-30T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/"},"wordCount":531,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp","keywords":["max_execution-time","php"],"articleSection":["Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/","url":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/","name":"max_execution_time Guide for PHP | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp","datePublished":"2024-09-30T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"PHP max_execution_time Guide: What is the default limit, and how can it be increased? Learn everything you need to know in our latest blog.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2024\/09\/how-to-increase-php-max-execution-time.webp","width":742,"height":410,"caption":"How to Add PHP max_execution_time"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/max_execution_time-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"PHP max_execution_time Guide: What is the default limit, and how can it be increased?"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2171","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2171"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2171\/revisions"}],"predecessor-version":[{"id":2184,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2171\/revisions\/2184"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2188"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2171"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2171"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2171"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}