in reply to Re: File Upload + recording
in thread File Upload + recording "metadata"
One problem I've found is that when uploading files larger than around ~60-70k, I get a problem in trying to instantiate CGI.pm. (Apache flips me the bird and takes me to an error screen). Is this a known problem? Has anyone else struck this?< my $fh = $query->upload('upload_file'); > my $fh = $query->param('uploaded_file'); # file input control is named "uploaded_file" and < open OUTPUT, "/foo/save" or die "Can't open: $!"; > open OUTPUT, "> /foo/save" or die "Can't open: $!";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: Re: File Upload + recording
by btrott (Parson) on Jun 15, 2000 at 06:48 UTC | |
by brett (Initiate) on Jun 15, 2000 at 08:44 UTC | |
by btrott (Parson) on Jun 15, 2000 at 08:57 UTC |