Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am trying to upload files using below Perl script, but I am getting error as
Can't locate auto/APR/Request/Param/fh.al in @INC (@INC contains: .....
my $upload = $r->upload("filename"); my $fh; open FHANDLE, ">$filepath"; $fh = $upload->fh(); binmode FHANDLE; print FHANDLE <$fh>; close FHANDLE;
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem in File Upload
by moritz (Cardinal) on Feb 23, 2011 at 14:10 UTC | |
|
Re: Problem in File Upload
by ww (Archbishop) on Feb 23, 2011 at 14:12 UTC | |
|
Re: Problem in File Upload
by Anonymous Monk on Jan 28, 2013 at 16:45 UTC |