{"id":6808,"date":"2022-01-25T13:06:11","date_gmt":"2022-01-25T13:06:11","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=6808"},"modified":"2026-02-26T14:03:07","modified_gmt":"2026-02-26T14:03:07","slug":"500-internal-server-error","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/","title":{"rendered":"500 Internal Server Error"},"content":{"rendered":"<p><strong><\/strong><\/p>\r\n<p class=\"wp-block-paragraph\">In this article, we will explain the 500 Internal Server Error and how to resolve it if you encounter it.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"507\" height=\"356\" class=\"wp-image-6812\" src=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png\" alt=\"\" srcset=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png 507w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2-300x211.png 300w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2-230x161.png 230w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2-350x246.png 350w, https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2-480x337.png 480w\" sizes=\"auto, (max-width: 507px) 100vw, 507px\" \/><\/figure>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">The internal server error is a general HTTP status code that indicates that your server is experiencing difficulties or that something has gone wrong with your website&#8217;s server. The problem may be just temporary because it doesn&#8217;t explain what it is. When the webserver finds an unintended mistake, this happens. It could be a problem with your web host or something is wrong with the program.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">You can check this normally:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Click F5 or Reload the Page.<\/li>\r\n<li>Check for permissions errors in your folders.<\/li>\r\n<li>Examine the PHP timeout.<\/li>\r\n<li>.htaccess coding error.<\/li>\r\n<li>Because of the volume of traffic on your website.<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">If you are currently experiencing this problem, you can use the following procedure to keep an eye on the Apache log for new errors:<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>Run tail -n0 -f \/var\/log\/apache2\/error_log<\/li>\r\n<li>Refresh the website the error is happening on<\/li>\r\n<li>Exit tail with CTRL+C and review the output<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">The following section discusses some of the most common causes of a 500.<\/p>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">When this happens on a cPanel server, it&#8217;s usually due to invalid coding in the. htaccess file, which looks like this in the Apache error log:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">[Wed May 13 06:31:26.262337 2020] [core:alert] [pid 2140] [client 10.3.17.46:57731] \/home\/sean\/public_html\/.htaccess: Invalid command 'SetEnv', perhaps misspelled or defined by a module not included in the server configuration<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Because the server did not have the Apache module mod_env, you can avoid a fatal error by using the If Module statement in the .htaccess file:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">&lt;IfModule mod_env&gt;\r\n\r\nSetEnv test test\r\n\r\n&lt;\/IfModule&gt;<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Sever does not have enough memory to allocate to request:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-preformatted\">\u00a0[Fri May 08 00:42:01.220008 2020] [cgi:error] [pid 24686] (12)Cannot allocate memory: [client 10.3.17.46:31164] AH01223: couldn't spawn child process: \/usr\/local\/cpanel\/cgi-sys\/wredirect.cgi<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">A 500 error may occur if a user has a limit on the number of inodes that can be used in CloudLinux. If the script is unable to generate the necessary files, it will return a more general 500 error. If you want to see the user&#8217;s quota, use the quota command.<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-verse\">\u00a0# test root@93545571 \/home\/testuser\/public_html]cPs# quota -su testuser<br \/>Disk quotas for user an000282 (uid 1282):<br \/>\u00a0Filesystem space quota limit grace files quota limit grace<br \/>\u00a0\/dev\/sda2 4239M 0K 0K 323k* 300k 360k none<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">This test user has exceeded the maximum number of files he or she can make, resulting in a 500 error from Apache due to a bad file descriptor:<\/p>\r\n\r\n\r\n\r\n<pre class=\"wp-block-verse\">\u00a0 [Sat Aug 01 08:26:22.459080 2020] [:error] [pid 28368:tid 47803753387776] [client xxx.xx.xxx.x:36561] Sat Aug\u00a0 1 08:26:22 2020 (18854):<br \/>[Sat Aug 01 08:26:22.459189 2020] [:error] [pid 28368:tid 47803753387776] [client xxx.xx.xxx.x:36561] Fatal Error<br \/>[Sat Aug 01 08:26:22.459311 2020] [:error] [pid 28368:tid 47803753387776] [client xxx.xx.xxx.x:36561] Unable to create lock file: Bad file descriptor (9)<br \/>[Sat Aug 01 08:26:22.459354 2020] [:error] [pid 28368:tid 47803753387776] [client xxx.xx.xxx.x:36561]<br \/>[Sat Aug 01 08:26:22.460977 2020] [core:error] [pid 28368:tid 47803753387776] [client xxx.xx.xxx.x:36561] End of script output before headers: index.php<\/pre>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">We hope that you now have a good understanding of the 500 Internal Server Error. If you continue to have problems with the protocol outlined above, please contact the <a href=\"https:\/\/www.bodhost.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">bodHOST<\/a> Team for constructive assistance 24\/7.<\/p>\r\n<p><strong><\/strong><\/p>","protected":false},"excerpt":{"rendered":"<p>In this article, we will explain the 500 Internal Server Error and how to resolve it if you encounter it. The internal server error is a general HTTP status code&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":22,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[297],"tags":[1004,1005],"class_list":["post-6808","post","type-post","status-publish","format-standard","hentry","category-faq","tag-500-error","tag-internal-server-error"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How can you fix the 500 Server Error?<\/title>\n<meta name=\"description\" content=\"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.\" \/>\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.bodhost.com\/kb\/500-internal-server-error\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How can you fix the 500 Server Error?\" \/>\n<meta property=\"og:description\" content=\"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-25T13:06:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:03:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2022\/01\/MicrosoftTeams-image-12-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vincer\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2022\/01\/MicrosoftTeams-image-11.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vincer\" \/>\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:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/\"},\"author\":{\"name\":\"Vincer\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/f3852d74aeac480763235276b5faddd0\"},\"headline\":\"500 Internal Server Error\",\"datePublished\":\"2022-01-25T13:06:11+00:00\",\"dateModified\":\"2026-02-26T14:03:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/\"},\"wordCount\":361,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Screenshot_2.png\",\"keywords\":[\"500 Error\",\"Internal Server Error\"],\"articleSection\":[\"FAQs\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/\",\"name\":\"How can you fix the 500 Server Error?\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Screenshot_2.png\",\"datePublished\":\"2022-01-25T13:06:11+00:00\",\"dateModified\":\"2026-02-26T14:03:07+00:00\",\"description\":\"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Screenshot_2.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Screenshot_2.png\",\"width\":507,\"height\":356},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/500-internal-server-error\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"FAQs\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/faq\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"500 Internal Server Error\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/f3852d74aeac480763235276b5faddd0\",\"name\":\"Vincer\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g\",\"caption\":\"Vincer\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/vinayak\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How can you fix the 500 Server Error?","description":"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.","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.bodhost.com\/kb\/500-internal-server-error\/","og_locale":"en_US","og_type":"article","og_title":"How can you fix the 500 Server Error?","og_description":"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.","og_url":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2022-01-25T13:06:11+00:00","article_modified_time":"2026-02-26T14:03:07+00:00","og_image":[{"width":1080,"height":1080,"url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2022\/01\/MicrosoftTeams-image-12-2.png","type":"image\/png"}],"author":"Vincer","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2022\/01\/MicrosoftTeams-image-11.png","twitter_misc":{"Written by":"Vincer","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/"},"author":{"name":"Vincer","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/f3852d74aeac480763235276b5faddd0"},"headline":"500 Internal Server Error","datePublished":"2022-01-25T13:06:11+00:00","dateModified":"2026-02-26T14:03:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/"},"wordCount":361,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png","keywords":["500 Error","Internal Server Error"],"articleSection":["FAQs"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/","url":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/","name":"How can you fix the 500 Server Error?","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#primaryimage"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#primaryimage"},"thumbnailUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png","datePublished":"2022-01-25T13:06:11+00:00","dateModified":"2026-02-26T14:03:07+00:00","description":"This ultimate guide covers all the important aspects of fixing the 500 Server Error. If you still find any problems, you can visit our website.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#primaryimage","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2021\/04\/Screenshot_2.png","width":507,"height":356},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/500-internal-server-error\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"FAQs","item":"https:\/\/www.bodhost.com\/kb\/category\/faq\/"},{"@type":"ListItem","position":2,"name":"500 Internal Server Error"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/f3852d74aeac480763235276b5faddd0","name":"Vincer","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bb5079f76e01aaa97b2ffcb7a562292482693b395aba4a4214c98f006c07d352?s=96&d=mm&r=g","caption":"Vincer"},"url":"https:\/\/www.bodhost.com\/kb\/author\/vinayak\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/6808","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=6808"}],"version-history":[{"count":20,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/6808\/revisions"}],"predecessor-version":[{"id":11878,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/6808\/revisions\/11878"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=6808"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=6808"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=6808"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}