I have 8000 checkboxes in a form being submitted. No comments on how bad that is please.
My .htaccess
php_value post_max_size 20M
php_value max_input_vars 10000
php_value suhosin.get.max_vars 10000
php_value suhosin.post.max_vars 10000
php_value suhosin.request.max_vars 10000
I am getting the Request Entity Too Large
error when I submit the form.
When I had 3000 checkboxes it was working fine. Am I missing some more settings or do I need restart a service other than apache?
Aside: I checked my post size using
postsize = $("form").not("[type='file']").serialize().length;
The result is postsize == 165655