I have a perl webapp that works fine on the server but not on my local machine.
Apache logs show (among other errors):
Permission denied at /home/mywebapp/dev/www/index.cgi line 318.
End of script output before headers: index.cgi
Line 318 in index.cgi:
our @gr;
eval('require Groups;');
#close STDERR; <<<< commented
open STDERR, '>1' or die $!; <<<< line 318
I'd appreciate any help. Thanks!
// commentedis not a comment in perl. Only a hash sign#is a comment. See perlsyn - simbabque