in reply to Re: Apache 2, Perl 5.8.0, Netware 6.5 server reboots
in thread Apache 2, Perl 5.8.0, Netware 6.5 server reboots

Your server may think the current working directory is different than you. Try using an absolute path to that file and try it again. Also, examine your log file. You'll probably see the line where it aborted because it couldn't read the file. Also, also, you might want to use something like Cwd like use Cwd; warn "current working directory: " . getcwd(); just prior to that line. You'll know what the current directory is then.

Replies are listed 'Best First'.
Re^3: Apache 2, Perl 5.8.0, Netware 6.5 server reboots
by chriso (Sexton) on Jun 30, 2005 at 15:47 UTC
    Thank you!! I did a getcwd() and lo, it was not the directory I wanted. I then did a chdir and it's doing much better.