> I do not have the errors, because I do not have read access to the error
> logs right now, and
> CGI::carp is not working correctly.
>

I suggest that you try to get the errors, it will be much easier to debug.

You can still redirect STDERR to a file and then read that file (if you
can create and read files on the server).

open(STDERR, '> local_error_log');

(...)

close(STDERR);

Reply via email to