W. Gary Martin home page > CTSE 7970 > Managing Your Web Site

Managing Your Web Site

CTSE 7970-002, Summer 2001

The most important point:

Keep your files synchronized! That is, keep a local copy of your entire Web site, neatly organized within a folder on a disk, hard disk, etc. That way if something goes wrong, you can easily retrieve your most recent version of a file.

Using an FTP client

Rather than relying on the "Publish" command within Communicator, you may find using an FTP client more useful in moving files to and from your Web site. On the Mac, the most common program is Fetch. In Windows, WS_FTP is common. The advantages are:

To look at your Web site using Fetch:

Uploading files to your site.

Downloading files from your site.

Deleting files.

Using folders within your site

IMPORTANT: Before making any major changes to your Web site, you may want to back up the folder containing your files. That is, make a duplicate copy of that folder.

As the number of files associated with a particular assignment or other feature of your site proliferate (including graphic files, various HTML pages, etc.) you may find it useful to use a folder to enclose all the related items.

To make the following discussion clearer, let's assume that you have created a folder called "writeup3" within your home directory to contain all the files associated with Write-up #3. Your directory looks (in part) like the following:

public_html (home folder)

index.html (your home page)

reflection2.html

part1.html

writeup3 (folder containing Write-up #3)

Linking is relative to the location of the file that is being accessed. For example, if you enter "reflection2.html" as the file to be linked to from your home page, the server looks for the file in your home directory. Likewise, if you link to "part1.html", it will choose the file within your home folder, not within the writeup3 folder.

You can embed folders within folders, as in the following:

public_html (home folder)

index.html (your home page)

reflections (folder including all your reflections)

index.html (list of your reflections)

reflection1.html (one of your reflections)

writeups (folder including all your write-ups)

index.html (list of your write-ups)

writeup3 (folder containing Write-up #3)

index.html (the main page for Write-up #3)

The same principles apply for linking, except you may have to do things twice. For example

Final Warning

Always keep a local copy of your entire web site, so that if things get jumbled up while uploading, you can go back to the previous version.

Before making any major structural changes to your site (such as adding new folders), duplicate the entire folder where your site is stored. Again, you can then gracefully recover if things go awry.

Back to top