"eps com estem" <[EMAIL PROTECTED]> writes:

>       if ($info->{content} =~ /.*multipart.*/) {
>          my $mm =Apache::Request->new($apache,POST_MAX=>50000); #50k max
>          my $uploads =$mm->upload();
>          my $table =$mm->param(); #en teoria els uploads ja no estan

Try switching the order:

           my $table =$mm->param(); #en teoria els uploads ja no estan
           my $uploads =$mm->upload();

If that fixes your problem, there's a bug in $mm->upload()
that we need to fix.

-- 
Joe Schaefer


-- 
Report problems: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Reply via email to