I\'m building a RESTS like service in PHP that should accept a large JSON post as main data (I send and read the data much like discussed here: http://forums.laravel.io/view
Change this
; max_input_vars = 1000
To this
max_input_vars = 3000
Comment line in php.ini file is
;
Changing max_input_vars in php.ini didn't worked for me
Change max_input_vars using .htaccess file is working.
If you want to change the “max_input_vars” using .htaccess file then go to C:\xampp\apache\conf\httpd.conf file (in xampp) add the following code in you .htaccess file.
php_value max_input_vars 10000