From: Joe Schaefer Subject: Re: libapreq2 upload question Date: 20:34 on 19 Dec 2004
"eps com estem" <ggerard@xxxxxxx.xxx> 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