Viewing Personal Web Pages


What is my personal webspace URL?

You can view your personal webspace by pointing your browser to https://www.seanet.com/~username

Back to the Index Back to the Top


What does a 404 Error message mean?

When you receive this error message from your Web browser, it indicates that the Web page you are attempting to view does not exist on the server. You might receive this error message for the following reasons:

  • Misspelled file name or directory. Make sure that the address you typed in your Web browser has no misspellings.
  • Broken Link. Your HTML code is calling a file that does not exist where the code expects to find it. Make sure that the URLs in your code correspond exactly to the path to the file or directory on the server. For instance, the URL might be https://www.yourdomain.com/folder1/page.htm. However, the file your code is asking for, called page.htm, is actually in a folder called folder2. Since your code is looking for page.htm in folder1 it cannot find the file and the page won't be visible. This can be corrected by moving the file page.htm to folder1 or by recoding your HTML so as to direct Web browsers to folder2.

Back to the Index Back to the Top


I uploaded my pages, but I can't see them. Why not?

A possible reason is that your homepage (the first page of your Web site) is misnamed. If you are on our UNIX server, that file must be named index.html or index.htm. This is case sensitive, so be sure the filename is all lower case. Also, be sure that this file was uploaded into your HTML directory. If it isn't there, you won't be able to see the Web site.

Back to the Index Back to the Top


I uploaded a new version of my Web site. Why do I still see the old version?

The changes you make to your site should take place immediately after successful uploading or publishing. Any delay in displaying the new updates is either the result of an unsuccessful upload or caching in your Web browser. It is always a good idea to clear the cache on your browser when making changes to your Web site.

Your homepage must be named index.html or index.htm. This is case sensitive, so be sure the filename is all lower case. Be sure that this file is not located in a subfolder.

Back to the Index Back to the Top