David Seay wrote:
>Are you getting the "SEVER ERROR" on a Mac server? Using the ':' delimiter
>will not work on platforms other than MacOS. If in dout add "print $^O;" in
>your script to see which operating system. Try '/' for the delimiter for
>Unix servers.
you could also try using the $! variable in your die():
open (OUT, $file)||die "Server Error: $!";
which will give you more info as to why your script is failing
- [MacPerl] creating file named with time josh
- Re: [MacPerl] creating file named with time Paul Schinder
- Re: [MacPerl] creating file named with time josh
- Re: [MacPerl] creating file named with time Paul Schinder
- Re: [MacPerl] creating file named with time Greenblatt & Seay
- robinmcf