in reply to Re: Perl can't write files
in thread Perl can't write files
It "die" on the the first line. The error on log is "Permission denied at /usr/lib/cgi-bin/script.cgi"open ( UPLOADFILE, ">$filepath" ) or die "$!"; binmode UPLOADFILE; while ( <$file> ) { print UPLOADFILE $_; } close($file); close UPLOADFILE; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl can't write files
by Arunbear (Prior) on Apr 10, 2014 at 11:13 UTC |