Ville Skytt� <[EMAIL PROTECTED]> writes:

>     package uptest;
>     use Apache2::Request;
>     use Apache2::Upload;
>     sub handler
>     {
>       my $r = Apache2::Request->new(shift);

Next thought: try adding

        $r->discard_request_body;

right here, and report back even if this doesn't help any.

>       print "Content-Type: text/plain\r\n\r\n";
>       foreach ($r->upload()) {
>         my $up = $r->upload($_);
>         print $up->filename(), "\n";
>       }
>     }
>     1;

-- 
Joe Schaefer

Reply via email to