in reply to CGI File upload, resulting files 0 bytes long
the code looks alright. but you didn't include the code that gave you the $data filehandle. be sure that $data was retrieved something like so:
my $data = $query->param("uploadfileTagname");
a common gotcha is opening the uploaded filehandle for read, then trying to write it back out. at least it "got" me....once :-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: CGI File upload, resulting files 0 bytes long
by Mandor (Pilgrim) on Mar 07, 2001 at 02:35 UTC | |
by wardk (Deacon) on Mar 07, 2001 at 02:45 UTC |