FTP

Use FTP (File Transfer Protocol) to transfer files between your Developer Server and your local computer. To connect to the FTP server of your Developer Server, you will need an FTP client installed on your local computer. There are many FTP programs available. The Windows operating system ships with a command-line FTP program. However, for an easy-to-use FTP client, we can recommend WS_FTP or CuteFTP.

<> Running the Command-Line FTP Program

  1. From your Windows taskbar, click Start.
  2. Click Run.
  3. Enter ftp yourcompany.com (where yourcompany.com is replaced with your actual domain name).
<> An Example of Command-Line FTP
  1. From your Windows taskbar, click Start.
  2. Click Run.
  3. Type the following : ftp yourcompany.com cd /www/htdocs ascii lcd c:\upload put index.html bin put logo.gif quit

Back