{"id":587,"date":"2013-02-25T18:11:51","date_gmt":"2013-02-25T18:11:51","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2013\/02\/25\/using-multiple-php-versions-one-account\/"},"modified":"2023-08-15T16:33:07","modified_gmt":"2023-08-15T20:33:07","slug":"multiple-php-versions","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/","title":{"rendered":"Using Multiple PHP Versions"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png\" alt=\"using multiple php versions hero image\" class=\"wp-image-82040\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>When using different software on one account, you may need to use one version of PHP while running multiple PHP versions on different domains. For example, you can have PHP 5.4 for the site in public_html and then use PHP 5.2 in a subdirectory. Here is how to use any combination of other PHP versions in any directory when <a href=\"https:\/\/www.inmotionhosting.com\/php-hosting\">web hosting with PHP<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using the Default PHP version<\/h2>\n\n\n\n<p>To use the system default PHP, use the following in .htaccess:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use system PHP5 as default <br>AddHandler application\/x-httpd-php5 .php .php5<\/pre>\n\n\n\n<p>This will make the specific directory use the System\u2019s default PHP version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using Multiple PHP Versions<\/h2>\n\n\n\n<p>Depending on what version of PHP you want to use, you will need to place the following code in the .htaccess of the directory you want to change the PHP version for. Below is the code you need for each PHP version.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 5.3<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 5.3 as default <br>AddHandler application\/x-httpd-php53 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 5.4<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 5.4 as default <br>AddHandler application\/x-httpd-php54 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 5.5<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 5.5 as default <br>AddHandler application\/x-httpd-php55 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 5.6<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 5.6 as default<br>AddHandler application\/x-httpd-php56 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 7.0<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 7.0 as default<br>AddHandler application\/x-httpd-php70 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 7.1<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 7.1 as default<br>AddHandler application\/x-httpd-php71 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 7.2<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 7.2 as default<br>AddHandler application\/x-httpd-php72 .php .php5<br><br><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 7.3<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 7.3 as default<br>AddHandler application\/x-httpd-php73 .php .php5<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">PHP 7.4<\/h3>\n\n\n\n<pre class=\"wp-block-preformatted\"># Use PHP 7.4 as default<br>AddHandler application\/x-httpd-php74 .php .php5<\/pre>\n\n\n\n<p>Once you add the appropriate version code to your .htaccess your site in that directory will use that version of PHP.<\/p>\n\n\n\n<p class=\"alert\"><strong>Important!<\/strong> If you have PHP errors after adding the .PHP version code to the directory .htaccess, you may need the php.ini for that particular version uploaded to the directory and the recursive path added in order for the correct version of the php.ini to load. If there is no php.ini specific to the version of PHP you are using in the directory where the version code is added, the server will use the default php.ini. This could cause a newer php.ini version to be used instead of the older php.ini version, which can cause an issue in some cases.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using a PHP specific version of php.ini.<\/h2>\n\n\n\n<p>The following code will direct the server to the particular php.ini file. In this case, the path goes to the public_html directory. This is called the <a href=\"\/support\/website\/recursive-php-ini\/\" target=\"_blank\" rel=\"noopener noreferrer\">recursive path<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> suPHP_ConfigPath \/home\/USER\/public_html <\/pre>\n\n\n\n<p>To point your domain to a php.ini in a subfolder you would do the following:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"> suPHP_ConfigPath \/home\/USER\/public_html\/foldername <\/pre>\n\n\n\n<p>This allows a php.ini to be stored in the subdirectory, particularly for your PHP version in that directory. <strong>Note!<\/strong> If you need an older version of the php.ini file restored to a specific directory, you can specify the path to whatever version you are looking for like the following.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">suPHP_ConfigPath \/usr\/local\/lib suPHP_ConfigPath \/opt\/php52\/lib suPHP_ConfigPath \/opt\/php54\/lib<\/pre>\n\n\n\n<p>Otherwise, you can contact <a title=\"Click here for how to contact support\" href=\"\/support\/amp\/how-to-get-great-technical-support\/\" target=\"_blank\" rel=\"noopener noreferrer\">tech support<\/a> to have them restore the specific php.ini version to the folder you need it in.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using the MultiPHP Manager to Change the PHP Version<\/h2>\n\n\n\n<p><iframe loading=\"lazy\" title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/MDxvMMq4_XI\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Checking your changes<\/h2>\n\n\n\n<p>You can check to see if any changes you made took place by placing a phpinfo page in the folder area you are working on. You can then <a href=\"\/support\/website\/how-to-create-a-phpinfo-page\/\">view the settings<\/a> to ensure they are set correctly.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When using different software on one account, you may need to use one version of PHP while running multiple PHP versions on different domains. For example, you can have PHP 5.4 for the site in public_html and then use PHP 5.2 in a subdirectory. Here is how to use any combination of other PHP versions<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\"> Read More ><\/a><\/p>\n","protected":false},"author":9,"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-587","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>Using Multiple PHP Versions On the Same Server<\/title>\n<meta name=\"description\" content=\"If you need to use an older version of PHP and you are an a newer PHP version server, you can set your addon domains or subdomains to use a different version of PHP. This article will explain how.\" \/>\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\/multiple-php-versions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Multiple PHP Versions On the Same Server\" \/>\n<meta property=\"og:description\" content=\"When using different software on one account, you may need to use one version of PHP while running multiple PHP versions on different domains.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\" \/>\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-02-25T18:11:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-15T20:33:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@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\/multiple-php-versions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41\"},\"headline\":\"Using Multiple PHP Versions\",\"datePublished\":\"2013-02-25T18:11:51+00:00\",\"dateModified\":\"2023-08-15T20:33:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\"},\"wordCount\":452,\"commentCount\":27,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png\",\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\",\"name\":\"Using Multiple PHP Versions On the Same Server\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png\",\"datePublished\":\"2013-02-25T18:11:51+00:00\",\"dateModified\":\"2023-08-15T20:33:07+00:00\",\"description\":\"If you need to use an older version of PHP and you are an a newer PHP version server, you can set your addon domains or subdomains to use a different version of PHP. This article will explain how.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png\",\"width\":1200,\"height\":630,\"caption\":\"using multiple php versions hero image\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Multiple PHP Versions\"}]},{\"@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\/0ba9f3ef6fadef71df5aa120ff996c41\",\"name\":\"InMotion Hosting Contributor\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/jamesr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Multiple PHP Versions On the Same Server","description":"If you need to use an older version of PHP and you are an a newer PHP version server, you can set your addon domains or subdomains to use a different version of PHP. This article will explain how.","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\/multiple-php-versions\/","og_locale":"en_US","og_type":"article","og_title":"Using Multiple PHP Versions On the Same Server","og_description":"When using different software on one account, you may need to use one version of PHP while running multiple PHP versions on different domains.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2013-02-25T18:11:51+00:00","article_modified_time":"2023-08-15T20:33:07+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png","type":"image\/png"}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@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\/multiple-php-versions\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/0ba9f3ef6fadef71df5aa120ff996c41"},"headline":"Using Multiple PHP Versions","datePublished":"2013-02-25T18:11:51+00:00","dateModified":"2023-08-15T20:33:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/"},"wordCount":452,"commentCount":27,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png","articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/","name":"Using Multiple PHP Versions On the Same Server","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions-1024x538.png","datePublished":"2013-02-25T18:11:51+00:00","dateModified":"2023-08-15T20:33:07+00:00","description":"If you need to use an older version of PHP and you are an a newer PHP version server, you can set your addon domains or subdomains to use a different version of PHP. This article will explain how.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/08\/using-multiple-php-versions.png","width":1200,"height":630,"caption":"using multiple php versions hero image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/multiple-php-versions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Using Multiple PHP Versions"}]},{"@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\/0ba9f3ef6fadef71df5aa120ff996c41","name":"InMotion Hosting Contributor","url":"https:\/\/www.inmotionhosting.com\/support\/author\/jamesr\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4288,"name":"Website","slug":"website","link":"https:\/\/www.inmotionhosting.com\/support\/website\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/587","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\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=587"}],"version-history":[{"count":14,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/587\/revisions"}],"predecessor-version":[{"id":106027,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/587\/revisions\/106027"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=587"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=587"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=587"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}