Difference between revisions of "About FTP and Shared Hosting"

From XMission Wiki
Jump to: navigation, search
(Plesk Unlimited Hosting: About FTP and Unlimited Hosting)
Line 56: Line 56:
  
 
Once the connection is complete, you will both the local site (your computer or device) and the remote site (the web server):
 
Once the connection is complete, you will both the local site (your computer or device) and the remote site (the web server):
 +
 +
[[File:FTP_connect2.png]]
 +
 +
 +
In most cases, the root folder for your website is going to ''httpdocs'' and you will want to upload the files for your website to this directory. This can be done a variety of ways. You can select the files you want to upload, and right click them for uploading options, or you can also simply drag them to remote site and folder you would like them to be uploaded to.
  
 
[[File:FTP_connect2.png]]
 
[[File:FTP_connect2.png]]

Revision as of 13:11, 23 April 2012

Plesk Unlimited Hosting: About FTP and Unlimited Hosting

  • What is FTP?

FTP (File Transfer Protocol) is a protocol used to transfer files over a TCP/IP network (Internet, UNIX, etc.). For example, after developing the HTML pages for a website on a local machine, they are typically uploaded to the Web server using FTP.

FTP includes functions to log onto the network, list directories, and copy files. FTP operations can be performed by typing commands at a command prompt or via an FTP client running under a graphical interface such as Windows.

We highly recommend using an FTP client, such as Filezilla which is available at http://filezilla-project.org/.

As there are many FTP clients out there, the interface for each will differ slightly. The screenshots used in the instructions below are from Filezilla but the basic settings should be the same no matter what FTP client you choose.


  • How does FTP work with my Unlimited Hosting?

FTP is the recommended way to upload the files you have created for your website to our server. In general, FTP, both as a command-line function and as utility, is more reliable than uploading files via your web browser. It is also a useful tool in making files available to friends, family, or clients without sending bulky attachments via email.

  • How do I find the Server Host for XMission's Plesk Unlimited Hosting?

The first thing you'll want to do is log into your Plesk Control Panel at http://plesk01.xmission.com:8443. For more information about logging into your Plesk Control Panel, please see Administration/Logging in.


Once logged in, click on the "Websites & Domains" tab as seen below:

Plesk tabs new.png


Near the bottom of the page, you should see a list of your domains. To proceed, simply click on the blue domain name you need information about. In this screenshot, the example would be example.com.

Plesk preview page1.png


The fourth section of the next page, just below the "Document root" info, is the temporary URL for your site. In this case, the example URL would be example.com.198-60-22-66.temphost.xmission.com.

This will be the host name you use to connect to via FTP.

Plesk preview page2.png


  • How do I connect to XMission's Plesk Unlimited Hosting FTP server via an FTP Client?

As mentioned, every FTP client has a slightly different interface. However, the three pieces below are typically all that is necessary to create an FTP connection:

Host Address = The temporary URL for your site as mentioned in the above step
UserID or Username = username (Your FTP username. For more information on creating and managing FTP users, please see [[)
Password = password (Your FTP password. For more information on creating and managing FTP user passwords, please see [[)
Port = Port # (The default for most FTP client is 21. If you want to use a secure connection use 22.)

For example, using Filezilla, a common connection would look like this, where example.com.198-60-22-66.temphost.xmission.com is the example host and example_user_ftp is the example username:

FTP connect1.png


Once the connection is complete, you will both the local site (your computer or device) and the remote site (the web server):

FTP connect2.png


In most cases, the root folder for your website is going to httpdocs and you will want to upload the files for your website to this directory. This can be done a variety of ways. You can select the files you want to upload, and right click them for uploading options, or you can also simply drag them to remote site and folder you would like them to be uploaded to.

FTP connect2.png


ftp://username:password@ftp.xmission.com/

You would, of course, replace "username" with your XMission account name, and "password" with your XMission password.

How do I connect to XMission's FTP server with a secure connection?

This is the basic information for most clients

Host Address = shell.xmission.com
UserID or Username = username (Your XMission username.)
Password = password (Your XMission password.)
Port = 22

If you are using a Terminal Window with Mac, Windows or Linux:

In you terminal window type sftp yourusername@shell.xmission.com (yourusername = Your XMission username)

How can I make my files available to others?

When you connect to the FTP server and you're in your home directory, you should see a directory named FTP. In this directory, you can create a folder named "outgoing". Be sure the permissions are group readable, or chmod 755. You can put your files in this directory and give people the following URL for access:

ftp://ftp.xmission.com/pub/users/u/username/outgoing/filename

You would replace "u" with the first letter of your account name, "username" with your XMission username, and "filename" with the name of the file you are referring people to (or you can leave off the file name and let them browse the directory).

How can I have others send files to me via FTP?

Much the same as explained above, you can create a directory named "incoming" in your FTP directory. Make sure this directory is NOT readable and is group writable, or chmod 733. You can give people the following URL for access:

ftp://ftp.xmission.com/pub/users/u/username/incoming

You would replace "u" with the first letter of your account name, "username" with your XMission username.


Why is XMission's FTP server slow or even unavailable at times?

Speed depends on when you use it. During prime time, you sometimes share our FTP server with up to 100 of other Internet users around the world. This can be heavy load for the machine. Because of the high load this can cause, there is a limit of 100 simultaneous connections on the FTP server. Though it's rare, you may have to wait a couple of minutes to use it.


What are some common mistakes?

One common mistake is not setting proper file read permissions. This includes restricting everyone from retrieving those files, and leaving directories with world writable and world readable flags set. These directories often end up as trading grounds for software pirates. Also, you should occasionally check any incoming directories for files someone may have dropped for you, and clean up old unneeded files.

Another common mistake is attempting to upload hidden files. FTP will not allow you to upload a file with a "." preceding the file name.