0

I have an HTML form with a list of uploaded images and corresponding input type="file" fields.

As the list grows it begins to hit the max_file_uploads limit which, most often, cannot be modified on shared/mutual hosting.

What approach(es) could I take to get round this ?

P.S: Thought of staggered approach as can be done with populating a database but unclear on how I will do this at the moment.

James P.
  • 19,313
  • 27
  • 97
  • 155

2 Answers2

1

You could use a HTML5 or Flash uploader to upload one file at once. This way the limit will only be a limit for a single file. Your could try something like Uploadify

Benjamin Paap
  • 2,744
  • 2
  • 21
  • 33
1

change this line in your php.ini ... pass it the number of files you want to allow

max_file_uploads=50

Mik
  • 1,705
  • 1
  • 14
  • 26