Lecture 12b: Web Publishing and FTP

What You Will Learn Today

  1. Use an Internet Service Provider to create an account and establish a URL for your web site.
  2. Select and use tools to upload pages to the server, including FTP.
  3. Test your uploaded web pages.
  4. Submit your site to search engines.

Using an ISP and Establishing a URL

ISP Web Hosting Services

Uploading Pages

FTP

Using FTP from the Command Line

Commands to type What the commands do
ftp Start FTP from the command line
ftp servername Start FTP from the command line and connect to a server e.g. ftp.tripod.com
username
password
Enter your username and password for this server.
For some sites, you can enter anonymous as your username and your e-mail address as your password.
help See a list of commands
help command Get help on a specific command
open servername Connect to a FTP server
ls or dir list the contents of the current directory
cd foldername change to another directory on the server (the remote computer)
lcd foldername change to another directory on your computer (the local computer)
binary or ascii change the file transfer mode (binary is used before transferring a binary file like a .zip file or image)
put filename upload a file from your computer to the server
get filename download a file from the server to your computer
mput * or mget * upload or download all files in the current directory (other wildcards like *.html can also be used)
close close the connection
bye exit FTP and return to the shell prompt (also closes the connection)

Testing Web Pages

Submitting a URL to Search Engines

To Do After Class