> I'm having problems with the old "Internal Server Error"
> issue. I know that this is generally due to permissions. I
> have used chmod go+rx -R *, but no joy. The html now works
> but not the cgi. Thoughts?
Try inserting the line
use CGI::Carp (fatalsToBrowser);
At the beginning of your s
> i decided to put the "use CGI::Carp" declaration before the "use"
> declaration for my module, and sure enough the browser fed me
> information.
that's good.
> it claims that the module wasn't found in any directory in
> @INC, but i could
> have sworn that "." is included. is there any reaso
i know this is very bad form, but i think i may have pinpointed the problem.
i decided to put the "use CGI::Carp" declaration before the "use"
declaration for my module, and sure enough the browser fed me information.
it claims that the module wasn't found in any directory in @INC, but i could
hav