Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 15 October 2002 04:45 pm, David Freeman wrote: > How large are the files you're using for testing? Try repeating the > test with files under 1k and see if the result is different. You might > be running into a page timeout rather than fil

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Well... you asked for it :D Here's the code: Key: When the user puts the URL or clicks the "Browse" button, they're required to hit the "Show Picture" button. This puts that picture into the 'pic[]' img space, and enables picInc[]. I didn't bother putting the javascript function picShow in her

RE: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread David Freeman
> post_max_size = 10M > upload_max_filesize = 8M > memory_limit = 8M > > As I said before, however.. even without throwing files > there, my loop > test code only spits out '01234', meaning that its only > looping 5 times > through the code before exiting... Does file handling only

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, AFAIK, There is no "limit" on the amount of files that can be uploaded at once. Could you post the html code for the form? Note: The post_max_size should be larger than the upload_max_filesize & the memory limit has to be larger than the post_m

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Sure.. post_max_size = 10M upload_max_filesize = 8M memory_limit = 8M As I said before, however.. even without throwing files there, my loop test code only spits out '01234', meaning that its only looping 5 times through the code before exiting... Does file handling only allow for 5 files at

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Can you post the values of the post_max_size, upload_max_filesize, & memory limit ini settings? ~Paul On Tuesday 15 October 2002 03:21 pm, Jason Young wrote: > Can't anyone help me with this? :-/ > > Read below... > > I wrote: > > Hey yet again... >