RE: [PHP] $_FILE array being truncated

2010-03-17 Thread Ford, Mike
> -Original Message- > From: Kim Madsen [mailto:php@emax.dk] > Sent: 16 March 2010 18:54 > when the field is changed (onChange()) or out of focus (is there > such a > function? onUnFocus()? :-)). onBlur() (Keeping the A as short as the Q is OT!) Cheers! Mike -- Mike Ford, Electr

Re: [PHP] $_FILE array being truncated

2010-03-16 Thread Rene Veerman
jumploader.com might be interesting to you.. On Tue, Mar 16, 2010 at 3:19 PM, Richard H Lee wrote: > p.general, > > I have a form with 75 or so file input controls: > Usually when I submit the form, I only upload two or so files. So in the > post request, it sends the two files along with the ot

Re: [PHP] $_FILE array being truncated

2010-03-16 Thread Kim Madsen
Ashley Sheridan wrote on 16/03/2010 18:28: I really wouldn't rely on a form that contains more than 20 file upload boxes though. If someone uploads some large files, they're stuck with an extremely long wait which will slow down your server a bit as well if a lot of people are using the same for

RE: [PHP] $_FILE array being truncated

2010-03-16 Thread Richard Lee
> Check out max_file_uploads which was added in PHP 5.2.12 and defaults to > 20. Yes that was the problem, I set max_file_uploads higher and it works now. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] $_FILE array being truncated

2010-03-16 Thread Ashley Sheridan
On Tue, 2010-03-16 at 18:25 +0100, Daniel Egeberg wrote: > On Tue, Mar 16, 2010 at 15:19, Richard H Lee wrote: > > p.general, > > > > I have a form with 75 or so file input controls: > > > Usually when I submit the form, I only upload two or so files. So in the > > post request, it sends the two

Re: [PHP] $_FILE array being truncated

2010-03-16 Thread Daniel Egeberg
On Tue, Mar 16, 2010 at 15:19, Richard H Lee wrote: > p.general, > > I have a form with 75 or so file input controls: > Usually when I submit the form, I only upload two or so files. So in the > post request, it sends the two files along with the other blank 73 fields. > This has been working fin