| 1.What is my personal webspace URL? |
|
You can view your personal webspace by pointing your browser to http://www.seanet.com/~username Back to the top
Back to the Index
|
| 2.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 http://www.seanet.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 top
Back to the Index
|
| 3.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. 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 not
uploaded into a subfolder. If it is in a subfolder, you won't be able to see the Web site.
Back to the top
Back to the Index
|
| 4.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 top
Back to the Index
|