简体   繁体   中英

Is there a way to increase max_input_vars for php runtime on IBM Bluemix?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM