Common Problems:
Perl scripts:
"I
am being told file not found" or "I am being
told no such file or directory"
Upload your Perl script in ASCII mode, not binary mode.
Permissions:
"How
do I stop people who are not in my group from reading
a directory?"
Type chmod o-r directory while you are in the directory
above it.
"How
do I stop people who are not in my group from writing
to a directory?"
Type chmod g-w directory while you are in the directory
above it.
"Don't
have permission to access /"
This error message means that you are missing your index.html
file.
"I
get a forbidden error when trying to access my site"
This error is generally because you have not placed
a default page in the main directory. A default page
must be called index.htm, index.html, or index.shtml
and it should be your main page.
|