{"id":455,"date":"2012-10-25T14:14:31","date_gmt":"2012-10-25T18:14:31","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/10\/25\/custom-php-ini-with-fastcgi\/"},"modified":"2021-08-16T23:31:28","modified_gmt":"2021-08-17T03:31:28","slug":"custom-php-ini-with-fastcgi","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/","title":{"rendered":"Custom php.ini file with FastCGI"},"content":{"rendered":"<p>In this article we\u2019ll discuss how you can set a custom <a href=\"\/support\/website\/update-local-php-settings\/\">php.ini<\/a> file per user when using FastCGI on your server. FastCGI is a PHP handler that is good for reducing CPU usage on a server, you might be interested in <a href=\"\/support\/website\/choosing-the-best-php-handler\/\">choosing the best PHP handler<\/a> for your specific server needs if FastCGI isn\u2019t working well for you.<\/p>\n<p>These instructions will allow you to have separate PHP configurations per user, so for instance you can set different memory limits or use opcode caching only on certain users. Please note that making these changes yourself would require <a href=\"\/support\/server\/ssh\/root-access-faq\/\">root access<\/a> to your server.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\">Login to your server via SSH<\/a>.<\/li>\n<li>Make a backup copy of your cPanel PHP wrapper script with the following command:\n<p class=\"code_block\">cp -frp \/usr\/local\/cpanel\/cgi-sys\/php5 \/usr\/local\/cpanel\/cgi-sys\/php5-BACKUP<\/p>\n<\/li>\n<li>Now edit the cPanel PHP wrapper script with your favorite text editor:\n<p class=\"code_block\">vi \/usr\/local\/cpanel\/cgi-sys\/php5<\/p>\n<p>By default this script should look like:<\/p>\n<pre class=\"code_block\">#!\/bin\/sh\n# If you customize the contents of this wrapper script, place\n# a copy at \/var\/cpanel\/conf\/apache\/wrappers\/php5\n# so that it will be reinstalled when Apache is updated or the\n# PHP handler configuration is changed\n\nexec \/usr\/bin\/php<\/pre>\n<\/li>\n<li>Above the line <strong>exec \/usr\/bin\/php <\/strong>add the following code:\n<p class=\"code_block\">[[ -f ~\/public_html\/php.ini ]] &amp;&amp; exec \/usr\/bin\/php -c ~\/public_html\/php.ini<\/p>\n<p>Now the cPanel PHP wrapper script should look like:<\/p>\n<pre class=\"code_block\">#!\/bin\/sh\n# If you customize the contents of this wrapper script, place\n# a copy at \/var\/cpanel\/conf\/apache\/wrappers\/php5\n# so that it will be reinstalled when Apache is updated or the\n# PHP handler configuration is changed\n\n[[ -f ~\/public_html\/php.ini ]] &amp;&amp; exec \/usr\/bin\/php -c ~\/public_html\/php.ini\nexec \/usr\/bin\/php<\/pre>\n<p>What this does is uses the Bash syntax for seeing if a file exists <strong>[[ -f ]]<\/strong> and in this case we\u2019re looking for the file <strong>~\/public_html\/php.ini<\/strong>. The <strong>~<\/strong> symbol would represent the current user calling the script, so this would be the same as entering in either <strong>\/home\/user1\/public_html\/php.ini<\/strong> or <strong>\/home\/user2\/public_html\/php.ini<\/strong> as the full path.<\/p>\n<p>The rest of the code simply executes the PHP binary at <strong>\/usr\/bin\/php<\/strong> with the <strong>-c<\/strong> flag which sets the location where you\u2019d like to load a php.ini from from. In this case we are telling the server we\u2019d like to use the php.ini file inside the user\u2019s <strong>\/public_html\/<\/strong> directory if one exists, instead of <strong>\/usr\/local\/lib\/php.ini<\/strong> which would be the server\u2019s default.<\/p><\/li>\n<li>Now you\u2019ll want to copy the cPanel PHP wrapper script to a more permanent location, so that your settings are saved if you ever recompile Apache down the road. This can be done using the following command:\n<pre class=\"code_block\">mkdir -p \/var\/cpanel\/conf\/apache\/wrappers\ncp -frp \/usr\/local\/cpanel\/cgi-sys\/php5 \/var\/cpanel\/conf\/apache\/wrappers\/php5<\/pre>\n<\/li>\n<li>Now restart Apache for the settings to become active:\n<p class=\"code_block\">service httpd restart<\/p>\n<\/li>\n<li>In order to verify your settings have been applied you\u2019ll want to create a PHP info script, the simplest way of doing this is simply copying any of your files to a file such as <strong>info.php<\/strong>, and then overwriting it with the <strong>phpinfo(); <\/strong>function:\n<p class=\"code_block\">echo \u2018&lt;?php phpinfo(); ?&gt;\u2019 &gt; ~user1\/public_html\/info.php<\/p>\n<p>Now when you visit your website and access the newly crated <strong>info.php<\/strong> script, you should see your custom <strong>php.ini<\/strong> being loaded next to the <strong>Loaded Configuration File<\/strong> section<br>\n<a href=\"\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"628\" height=\"610\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\" class=\"optimized-lcp-image\" alt=\"php-ini-loaded-configuration-file\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png 628w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file-300x291.png 300w\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<\/li>\n<\/ol>\n<p>You should now know how to use custom <strong>php.ini<\/strong> files for your individual users when you\u2019re using FastCGI as your PHP handler.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article we\u2019ll discuss how you can set a custom php.ini file per user when using FastCGI on your server. FastCGI is a PHP handler that is good for reducing CPU usage on a server, you might be interested in choosing the best PHP handler for your specific server needs if FastCGI isn\u2019t working<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\"> 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":[4288],"tags":[],"class_list":["post-455","post","type-post","status-publish","format-standard","hentry","category-website"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Custom php.ini file with FastCGI | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article we&#039;ll discuss how you can set a custom php.ini file per user when using FastCGI on your server.\" \/>\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\/website\/custom-php-ini-with-fastcgi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Custom php.ini file with FastCGI | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article we&#039;ll discuss how you can set a custom php.ini file per user when using FastCGI on your server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\" \/>\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=\"2012-10-25T18:14:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:31:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\" \/>\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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Custom php.ini file with FastCGI\",\"datePublished\":\"2012-10-25T18:14:31+00:00\",\"dateModified\":\"2021-08-17T03:31:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\"},\"wordCount\":505,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\",\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\",\"name\":\"Custom php.ini file with FastCGI | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\",\"datePublished\":\"2012-10-25T18:14:31+00:00\",\"dateModified\":\"2021-08-17T03:31:28+00:00\",\"description\":\"In this article we'll discuss how you can set a custom php.ini file per user when using FastCGI on your server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png\",\"width\":628,\"height\":610,\"caption\":\"php-ini-loaded-configuration-file\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Custom php.ini file with FastCGI\"}]},{\"@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":"Custom php.ini file with FastCGI | InMotion Hosting","description":"In this article we'll discuss how you can set a custom php.ini file per user when using FastCGI on your server.","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\/website\/custom-php-ini-with-fastcgi\/","og_locale":"en_US","og_type":"article","og_title":"Custom php.ini file with FastCGI | InMotion Hosting","og_description":"In this article we'll discuss how you can set a custom php.ini file per user when using FastCGI on your server.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-10-25T18:14:31+00:00","article_modified_time":"2021-08-17T03:31:28+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png","type":"","width":"","height":""}],"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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Custom php.ini file with FastCGI","datePublished":"2012-10-25T18:14:31+00:00","dateModified":"2021-08-17T03:31:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/"},"wordCount":505,"commentCount":8,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png","articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/","name":"Custom php.ini file with FastCGI | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png","datePublished":"2012-10-25T18:14:31+00:00","dateModified":"2021-08-17T03:31:28+00:00","description":"In this article we'll discuss how you can set a custom php.ini file per user when using FastCGI on your server.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/website_php-ini-loaded-configuration-file.png","width":628,"height":610,"caption":"php-ini-loaded-configuration-file"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/custom-php-ini-with-fastcgi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Custom php.ini file with FastCGI"}]},{"@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":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/455","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=455"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/455\/revisions"}],"predecessor-version":[{"id":85433,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/455\/revisions\/85433"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=455"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=455"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}