Possible Duplicate:
new limit within php: 1000 fields per POST. Does someone know, if the number can be influenced?
My form contains huge set of text inputs. Last ones of them doesn’t appear in $_POST array.
I encreased post_max_size and upload_max_size to 128M, but it doesn’t help.
Size fo my post data doesn’t exeed that limit.
Form contains 1001 items like <input type="text" name="field_name[]"/> and there’s no anything after that array in my $_POST.
This problem appears only on my development server (ubuntu server 12.10), it works good on my linux Mint 13. There’s allmost nothing edited in default php.ini files on both machines.
Try changing max_input_vars – that limits the size of the $_POST array.