1) File Not Found

Often, as you build your web site, you will encounter error messages. If you see a message similar to the one below:

screen shot file not found

which states that your URL cannot be found, it usually means the browser cannot find the file to which you want to link. You need to check the following:


2) Forbidden

The other common error message tells you you do not have permission to view a particular file:

screen shot forbidden access

This usually means that the file to which you are linking has problems in its permissions (the codes which tell the server to allow public access to a particular file). Fortunately, this is also relatively easily solved. You need to reset the permissions.

1) Keep your browser open.

2) Open Secure Shell (if you do not already have it open) and connect to your web site.

3) Open your public_html directory and highlight (but do not double-click on) the file to which you are trying to link.

4) Once the file is highlighted, right-click the file, which should open a new menu. Click on Properties, which should open the Properties box for your file. Make sure that the numbers at the bottom of the box read 755. Click OK.

4) Return to your browser and reload the page.

If you still encounter the Forbidden message, you may have problems with the permissions for your public_html directory. However, you can reset the permissions for your public_html directory by following the above steps for that directory.

If you still encounter problems...