{"id":50981,"date":"2019-12-23T13:31:55","date_gmt":"2019-12-23T18:31:55","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=50981"},"modified":"2023-10-12T11:51:33","modified_gmt":"2023-10-12T15:51:33","slug":"update-drupal-manually","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/","title":{"rendered":"How to Update Drupal Manually"},"content":{"rendered":"\n<p>There are many ways to update Drupal &#8211; manually, automatically, with Drush, or with Composer. Below we cover how to update Drupal manually:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#backup\">Backup Your Drupal Files<\/a><\/li>\n\n\n\n<li><a href=\"#replace\">Replace Drupal Core Files<\/a>\n<ul class=\"wp-block-list\">\n<li><a href=\"#ssh\">SSH<\/a><\/li>\n\n\n\n<li><a href=\"#ftp\">File Manager<\/a><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><a href=\"#update\">Finalize Drupal Updates<\/a><\/li>\n<\/ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"jumbotron\">Ignite your online presence with cutting-edge <a href=\"https:\/\/www.inmotionhosting.com\/drupal-hosting\">Drupal VPS Hosting<\/a>. Elevate speed, security, and reliability for a seamless website experience.<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"backup\">Backup Your Drupal Files<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/create-a-drupal-8-backup-backup-and-migrate\/\">Backup Drupal<\/a> with a module or <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/cpanel-backups\/\">backup cPanel<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/how-to-log-into-the-drupal-admin-dashboard\/\">Login to Drupal<\/a> as an administrator<\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/enable-maintenance-mode\/\">Enable Maintenance Mode<\/a><\/li>\n<\/ol>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"replace\">Replace Drupal Core Files<\/h2>\n\n\n\n<p>There are two ways to download and remove Drupal core files:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#ssh\">SSH<\/a> requires comfort in the command line interface (CLI) and attention to detail, but it&#8217;s faster because you can copy commands from the article.<\/li>\n\n\n\n<li><a href=\"#cpanel\">cPanel and FTP<\/a> are more user-friendly (and harder to make mistakes) but takes longer.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ssh\">SSH<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/how-to-login-ssh\/\">Log into SSH<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/where-to-upload-files\/\">Navigate to your Drupal root directory<\/a><\/li>\n\n\n\n<li>Delete the core and vendor directories: <code>rm -rf core vendor<\/code><\/li>\n\n\n\n<li>Remove all files (not other directories) in the directory:  <code>rm -f *.* .[a-z]*<\/code><\/li>\n\n\n\n<li>Visit <a href=\"https:\/\/www.drupal.org\/project\/drupal\">https:\/\/www.drupal.org\/project\/drupal<\/a> and click the download link for the latest Drupal core version<\/li>\n\n\n\n<li>Download the core file: <code>wget https:\/\/ftp.drupal.org\/files\/projects\/drupal-[version-number].tar.gz<\/code><br><p class=\"alert alert-info\">Copy the download link to get the full file path<\/p><\/li>\n\n\n\n<li>Install the archive: <code>tar zxf drupal-[version-number].tar.gz<\/code><\/li>\n\n\n\n<li><code><a href=\"https:\/\/drupal-[version-number]\">cd<\/a><\/code> into the new directory with the same name as the extracted archive: <code>cd drupal-[version-number]<\/code><\/li>\n\n\n\n<li>Copy the core and vendor directories into your Drupal root directory: <code>cp -R core vendor ..\/<\/code><\/li>\n\n\n\n<li>Copy all of the files (not other directories) into your Drupal root directory: <code>cp *.* .[a-z]* ..\/<\/code><\/li>\n\n\n\n<li>(Optional) Make needed changes to your <em>.htaccess, composer.json, and robots.txt<\/em><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"ftp\">cPanel File Manager or FTP<\/h3>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/how-to-log-into-cpanel\/\">Log into Panel File Manager<\/a> or <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/getting-started-guide\/\">FTP<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/where-to-upload-files\/\">Navigate to your Drupal root directory<\/a><\/li>\n\n\n\n<li>Delete the core and vendor directories and all files (including <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/show-hidden-files-in-file-manager\/\">hidden files<\/a>) in the directory<\/li>\n\n\n\n<li>Visit <a href=\"https:\/\/www.drupal.org\/project\/drupal\">https:\/\/www.drupal.org\/project\/drupal<\/a> and click the download link for the latest Drupal core version<\/li>\n\n\n\n<li>Download the core file<\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/how-to-upload-files-server\/\">Upload the file to your server<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/compressing-uncompressing-files\/\">Extract the file<\/a><\/li>\n\n\n\n<li>Enter the new directory with the same name as the extracted archive<\/li>\n\n\n\n<li>Copy the core and vendor directories and all files (including <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/show-hidden-files-in-file-manager\/\">hidden files<\/a> but not other directories) into your Drupal root directory<\/li>\n\n\n\n<li>(Optional) Make needed changes to your <em>.htaccess, composer.json, and robots.txt<\/em><\/li>\n<\/ol>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"update\">Run The Drupal Update<\/h2>\n\n\n\n<ol class=\"article_list wp-block-list\">\n<li>Visit [your-domain.com]\/update.php<\/li>\n\n\n\n<li>Click <strong>Continue<\/strong> at the bottom<\/li>\n\n\n\n<li>Click <strong>Apply pending updates<\/strong><\/li>\n\n\n\n<li>Click <strong>site<\/strong> or <strong>administration pages<\/strong> to log into Drupal<\/li>\n\n\n\n<li>Check the <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/view-admin-reports\/#status\">Status Report<\/a> for any errors<\/li>\n\n\n\n<li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/enable-maintenance-mode\/\">Disable maintenance mode<\/a> when ready<\/li>\n\n\n\n<li>Remove the downloaded archive file and the folder of the same name<\/li>\n<\/ol>\n\n\n\n<p class=\"alert alert-success\">Stay up to date on available updates by configuring the <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/drupal-8-update-manager-settings\/\">Drupal Update Manager Settings<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are many ways to update Drupal &#8211; manually, automatically, with Drush, or with Composer. Below we cover how to update Drupal manually: Backup Your Drupal Files Replace Drupal Core Files There are two ways to download and remove Drupal core files: SSH cPanel File Manager or FTP Run The Drupal Update Stay up to<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[372],"tags":[],"class_list":["post-50981","post","type-post","status-publish","format-standard","hentry","category-drupal"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Update Drupal Manually | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.\" \/>\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\/drupal\/update-drupal-manually\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Update Drupal Manually | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\" \/>\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=\"2019-12-23T18:31:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-12T15:51:33+00:00\" \/>\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=\"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\/drupal\/update-drupal-manually\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"How to Update Drupal Manually\",\"datePublished\":\"2019-12-23T18:31:55+00:00\",\"dateModified\":\"2023-10-12T15:51:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\"},\"wordCount\":403,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Drupal\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\",\"name\":\"How to Update Drupal Manually | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2019-12-23T18:31:55+00:00\",\"dateModified\":\"2023-10-12T15:51:33+00:00\",\"description\":\"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Update Drupal Manually\"}]},{\"@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":"How to Update Drupal Manually | InMotion Hosting","description":"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.","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\/drupal\/update-drupal-manually\/","og_locale":"en_US","og_type":"article","og_title":"How to Update Drupal Manually | InMotion Hosting","og_description":"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2019-12-23T18:31:55+00:00","article_modified_time":"2023-10-12T15:51:33+00:00","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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"How to Update Drupal Manually","datePublished":"2019-12-23T18:31:55+00:00","dateModified":"2023-10-12T15:51:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/"},"wordCount":403,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Drupal"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/","name":"How to Update Drupal Manually | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2019-12-23T18:31:55+00:00","dateModified":"2023-10-12T15:51:33+00:00","description":"Learn how to update Drupal core files manually using SSH, cPanel File Manager, and FTP.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/update-drupal-manually\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Update Drupal Manually"}]},{"@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":{"id":372,"name":"Drupal","slug":"drupal","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/drupal\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/50981","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=50981"}],"version-history":[{"count":11,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/50981\/revisions"}],"predecessor-version":[{"id":107077,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/50981\/revisions\/107077"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=50981"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=50981"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=50981"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}