{"id":59620,"date":"2020-09-14T13:28:36","date_gmt":"2020-09-14T17:28:36","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=59620"},"modified":"2020-12-30T18:40:50","modified_gmt":"2020-12-30T23:40:50","slug":"what-is-lftp","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/","title":{"rendered":"What is LFTP?"},"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\/2020\/09\/What-is-LFTP_-1024x538.png\" alt=\"\" class=\"wp-image-59629\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>While many different <strong>File Transfer Protocol (FTP)<\/strong> solutions exist, most of them require the use of a <strong>graphical user interface (GUI)<\/strong> that can adversely impact your workflow. For users familiar with command-line utilities, LFTP may be a better solution. LFTP is a free FTP client that allows users to perform file transfers via the command-line interface that exists on most Linux machines. In this article, we will discuss the benefits of LFTP as well as explore how to install LFTP on various Linux operating systems.<br><br>Topics Include:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#why\">Why use LFTP?<\/a><\/li><li><a href=\"#install\">Installing LFTP on CentOS<\/a>\u00a0<\/li><li><a href=\"#ubuntu\">Installing LFTP on Ubuntu<\/a><\/li><li><a href=\"#commands\">LFTP Commands<\/a><\/li><\/ul>\n\n\n\n<p class=\"alert alert-info\">Use LFTP to transfer your data to your <a href=\"https:\/\/www.inmotionhosting.com\/dedicated-servers\">Dedicated Hosting<\/a> server today!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"why\">Why Use LFTP?<\/h2>\n\n\n\n<p>As previously mentioned, most <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/getting-started-guide\/\" target=\"_blank\" rel=\"noreferrer noopener\">FTP<\/a> clients require the use of GUIs that some may find cumbersome or confusing. While popular applications such as Cyberduck and <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/configuring-your-site-in-filezilla\/\" target=\"_blank\" rel=\"noreferrer noopener\">Filezilla<\/a> provide a feature-rich experience, the process of clicking through menus can become tedious when transferring large amounts of data from multiple sources, to the point that it can interfere with your workflow.\u00a0<\/p>\n\n\n\n<p>By operating within a command-line environment, LFTP commands can be included in scripts and paired with other Linux commands, making it a powerful tool for transferring and managing data between multiple machines. For users familiar with command-line operations, LFTP will likely be a time saver in comparison to more conventional FTP clients. When transferring large amounts of data, this can make all the difference.<\/p>\n\n\n\n<p>LFTP supports many different methods for file access including <strong>FTP, FTPS, HTTP, HTTPS, HFTP, and SFTP<\/strong>. In addition, LFTP also supports torrents using the BitTorrent protocol. This array of file access methods is part of why LFTP is such a versatile tool for transferring files between machines. As a piece of free software, LFTP can be installed on nearly any machine running Linux with very little effort. In the next section we will outline how you can install LFTP on some of the more popular Linux operating systems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"install\">Installing LFTP on CentOS<\/h2>\n\n\n\n<p>The LFTP installation process is relatively simple. Using the default package manager, you can install LFTP with just a single command. As the package manager differs between CentOS 7 and CentOS 8, we will outline the installation process for both operating systems.\u00a0<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">CentOS 7<\/h3>\n\n\n\n<p>To install LFTP on CentOS 7 use the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo yum install lftp\u00a0<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">CentOS 8<\/h3>\n\n\n\n<p>To install LFTP on CentOS 8 use the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install lftp\u00a0<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"ubuntu\">Installing LFTP on Ubuntu<\/h2>\n\n\n\n<p>To install LFTP on Ubuntu use the following command:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install lftp\u00a0<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"commands\">LFTP Commands<\/h2>\n\n\n\n<p>While there are many different commands that can be used in conjunction with LFTP, we will explore a few examples that are commonly used for file transfers.\u00a0<\/p>\n\n\n\n<p><code>mirror<\/code> \u2013 The mirror command simply \u201cmirrors\u201d or copies the entire contents of a directory (folder) from one server to another. This command is generally used to download entire file structures from a source server to a destination server. The reverse can be done by adding by adding the <code>-R<\/code> option as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mirror -R<\/pre>\n\n\n\n<p>In simpler terms, <code>mirror<\/code> can be used to <strong>download<\/strong> data whereas <code>mirror -R<\/code> can be used to <strong>upload<\/strong> data. <\/p>\n\n\n\n<p><code>get<\/code> \u2013 The get command allows you to copy a single file from the source server to the destination server. This command is useful if you only want to transfer one file instead of an entire directory. To use it, you simply type <code>get<\/code>, followed by the name of the file you wish to transfer.\u00a0<\/p>\n\n\n\n<p><code>pwd<\/code> \u2013 the pwd command is a basic Linux command that stands for <strong>print working directory<\/strong>. It simply displays the current directory you\u2019re working with and can be used to identify where you are located within a server\u2019s file structure. This command is vital for navigating remote servers when using LFTP.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>While many different File Transfer Protocol (FTP) solutions exist, most of them require the use of a graphical user interface (GUI) that can adversely impact your workflow. For users familiar with command-line utilities, LFTP may be a better solution. LFTP is a free FTP client that allows users to perform file transfers via the command-line<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\"> 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":[4314],"tags":[],"class_list":["post-59620","post","type-post","status-publish","format-standard","hentry","category-ftp"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is LFTP?<\/title>\n<meta name=\"description\" content=\"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.\" \/>\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\/ftp\/what-is-lftp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is LFTP?\" \/>\n<meta property=\"og:description\" content=\"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\" \/>\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=\"2020-09-14T17:28:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-30T23:40:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.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\/ftp\/what-is-lftp\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"What is LFTP?\",\"datePublished\":\"2020-09-14T17:28:36+00:00\",\"dateModified\":\"2020-12-30T23:40:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\"},\"wordCount\":614,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.png\",\"articleSection\":[\"FTP\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\",\"name\":\"What is LFTP?\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.png\",\"datePublished\":\"2020-09-14T17:28:36+00:00\",\"dateModified\":\"2020-12-30T23:40:50+00:00\",\"description\":\"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is LFTP?\"}]},{\"@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":"What is LFTP?","description":"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.","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\/ftp\/what-is-lftp\/","og_locale":"en_US","og_type":"article","og_title":"What is LFTP?","og_description":"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-09-14T17:28:36+00:00","article_modified_time":"2020-12-30T23:40:50+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.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\/ftp\/what-is-lftp\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"What is LFTP?","datePublished":"2020-09-14T17:28:36+00:00","dateModified":"2020-12-30T23:40:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/"},"wordCount":614,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.png","articleSection":["FTP"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/","name":"What is LFTP?","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_-1024x538.png","datePublished":"2020-09-14T17:28:36+00:00","dateModified":"2020-12-30T23:40:50+00:00","description":"In this article, we will discuss the benefits of using LFTP and outline how to install the software on various operating systems.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/What-is-LFTP_.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/what-is-lftp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"What is LFTP?"}]},{"@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":4314,"name":"FTP","slug":"ftp","link":"https:\/\/www.inmotionhosting.com\/support\/website\/ftp\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59620","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=59620"}],"version-history":[{"count":7,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59620\/revisions"}],"predecessor-version":[{"id":66592,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59620\/revisions\/66592"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=59620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=59620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=59620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}