{"id":2379,"date":"2012-05-14T18:30:09","date_gmt":"2012-05-14T18:30:09","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/05\/14\/302-an-error-occurred-during-installation\/"},"modified":"2021-08-16T23:44:24","modified_gmt":"2021-08-17T03:44:24","slug":"error-occurred-during-installation","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/","title":{"rendered":"PrestaShop 1.5 &#8211;  Error Occurred During Installation"},"content":{"rendered":"<p>During our PrestaShop 1.5 testing, we came upon the following error <a href=\"\/support\/edu\/prestashop\/manually-install-prestashop\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">when attempting to install PrestaShop 1.5<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"1006\" height=\"448\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\" class=\"optimized-lcp-image\" alt=\"prestashop-an-error-occurred-during-installation\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\"><\/a><figcaption>An error occurred during installation <br><em>You can use the links on the left column to go back to the previous steps, or restart the installation process by clicking here.<\/em><\/figcaption><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Configure shop information<\/strong><\/h2>\n\n\n\n<p>In this file, <kbd>install\/error_log<\/kbd>, we found the following error:<\/p>\n\n\n\n<pre class=\"code_block\">[14-May-2012 13:54:30] PHP Warning:\u00a0 simplexml_load_string() [&lt;a href='function.simplexml-load-string'&gt;function.simplexml-load-string&lt;\/a&gt;]: Entity: line 1: parser error : Space required after the Public Identifier in \/home\/userna5\/prestashop.inmotiontesting.com\/classes\/LocalizationPack.php on line 41<\/pre>\n\n\n\n<p>Therefore, we reviewed this file \u2013 <kbd>classes\/LocalizationPack.php<\/kbd> \u2013 and saw the problem was with the <code>$file<\/code> variable being passed here:<\/p>\n\n\n\n<pre class=\"code_block\">public function loadLocalisationPack($file, $selection, $install_mode = false)\n{\n\tif (!$xml = simplexml_load_string($file))\n\treturn false;<\/pre>\n\n\n\n<p>During our troubleshooting we emailed ourselves the <code>$file<\/code> variable (using the php mail function) and found out the problem was in this file \u2013 <kbd>install\/models\/install.php<\/kbd> \u2013 at line 401:<\/p>\n\n\n\n<pre class=\"code_block\">$localization_file_content = @Tools::file_get_contents('https:\/\/api.prestashop.com\/download\/localization\/'.$version.'\/'.$data['shop_country'].'.xml');<\/pre>\n\n\n\n<p>What was happening is that <code>$localization_file_content<\/code> was set to <code>https:\/\/api.prestashop.com\/download\/localization\/15\/us.xml<\/code>, however that file did not exist. At the time of this writing, that URL was resulting in a 404 error. To resolve this issue, we added the following line in <code>install\/models\/install.php<\/code>:<\/p>\n\n\n\n<pre class=\"code_block\">$localization_file_content = @Tools::file_get_contents('https:\/\/api.prestashop.com\/download\/localization\/'.$version.'\/'.$data['shop_country'].'.xml');\n<code>unset($localization_file_content)<\/code>;<\/pre>\n\n\n\n<p>The unset function deleted the variable, and therefore ran the following code, which creates the contents based upon files already stored within PrestaShop 1.5 (instead of trying to download them from api.prestashop.com \u2013 which is resulting in a 404 error)<\/p>\n\n\n\n<pre class=\"code_block\">if (!$localization_file_content)\n{\n\t$localization_file = _PS_ROOT_DIR_.'\/localization\/default.xml';\n\tif (file_exists(_PS_ROOT_DIR_.'\/localization\/'.$data['shop_country'].'.xml'))\n\t$localization_file = _PS_ROOT_DIR_.'\/localization\/'.$data['shop_country'].'.xml';\n\t$localization_file_content = file_get_contents($localization_file);\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>During our PrestaShop 1.5 testing, we came upon the following error when attempting to install PrestaShop 1.5: Configure shop information In this file, install\/error_log, we found the following error: [14-May-2012 13:54:30] PHP Warning:&nbsp; simplexml_load_string() [&lt;a href=&#8217;function.simplexml-load-string&#8217;&gt;function.simplexml-load-string&lt;\/a&gt;]: Entity: line 1: parser error : Space required after the Public Identifier in \/home\/userna5\/prestashop.inmotiontesting.com\/classes\/LocalizationPack.php on line 41 Therefore, we<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"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":[92,4335],"tags":[],"class_list":["post-2379","post","type-post","status-publish","format-standard","hentry","category-prestashop","category-error-numbers"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"If you&#039;re installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.\" \/>\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\/prestashop\/error-occurred-during-installation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"If you&#039;re installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\" \/>\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-05-14T18:30:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:44:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\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=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 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\/prestashop\/error-occurred-during-installation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"PrestaShop 1.5 &#8211; Error Occurred During Installation\",\"datePublished\":\"2012-05-14T18:30:09+00:00\",\"dateModified\":\"2021-08-17T03:44:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\"},\"wordCount\":192,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\",\"articleSection\":[\"Prestashop\",\"Website Error Numbers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\",\"name\":\"PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\",\"datePublished\":\"2012-05-14T18:30:09+00:00\",\"dateModified\":\"2021-08-17T03:44:24+00:00\",\"description\":\"If you're installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif\",\"width\":1006,\"height\":448,\"caption\":\"prestashop-an-error-occurred-during-installation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PrestaShop 1.5 &#8211; Error Occurred During Installation\"}]},{\"@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\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting","description":"If you're installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.","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\/prestashop\/error-occurred-during-installation\/","og_locale":"en_US","og_type":"article","og_title":"PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting","og_description":"If you're installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-05-14T18:30:09+00:00","article_modified_time":"2021-08-17T03:44:24+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"PrestaShop 1.5 &#8211; Error Occurred During Installation","datePublished":"2012-05-14T18:30:09+00:00","dateModified":"2021-08-17T03:44:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/"},"wordCount":192,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif","articleSection":["Prestashop","Website Error Numbers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/","name":"PrestaShop 1.5 - Error Occurred During Installation | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif","datePublished":"2012-05-14T18:30:09+00:00","dateModified":"2021-08-17T03:44:24+00:00","description":"If you're installing Prestashop 1.5 and run into this error, Configure shop information - an error occurred during installation, review this article for further troubleshooting steps.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/05\/edu_prestashop1.5_install-error_prestashop-an-error-occurred-during-installation.gif","width":1006,"height":448,"caption":"prestashop-an-error-occurred-during-installation"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/error-occurred-during-installation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"PrestaShop 1.5 &#8211; Error Occurred During Installation"}]},{"@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\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":92,"name":"Prestashop","slug":"prestashop","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/prestashop\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2379","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=2379"}],"version-history":[{"count":12,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2379\/revisions"}],"predecessor-version":[{"id":86087,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/2379\/revisions\/86087"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=2379"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=2379"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=2379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}