Standard max_input_vars setting is 1000 in the PHP environment. I need to increase this, how I can do this in an app deployed to IBM Bluemix?
To change default php.ini
values you have to create a .user.ini
file in your project root directory and specify the parameter you want to overwrite, for example:
max_input_vars = 1500
Then push your application again:
cf push