in reply to CGI.pm file upload freaking me out
Problems with the following snippet:
open (F, ">$photo_save_name"); while (<$file_name>) { print F; }
while ( read( $file_handle, $buffer, BUFFER_SIZE ) ) {
Incidentally, I share your pain about CGI.pm and file uploads. One thing you might want to try is a new install and ensure that you've installed ALL of the modules with it. Not upgrading all of them can have unpredictable results (I speak from experience).
Cheers,
Ovid
Update: Of course he didn't open $file_handle. He didn't need to. I've written enough upload scripts that I should have paid attention. I am so embarrassed. :)
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (Ovid) Re: CGI.pm file upload freaking me out
by chipmunk (Parson) on Jan 06, 2001 at 09:59 UTC | |
Re: (Ovid) Re: CGI.pm file upload freaking me out
by Trimbach (Curate) on Jan 06, 2001 at 09:56 UTC |