dongtazu3080 2016-06-10 15:01 采纳率: 100%
浏览 32
已采纳

有没有办法在IBM Bluemix上增加php运行时的max_input_vars?

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?

  • 写回答

1条回答 默认 最新

  • drhzn3911 2016-06-10 16:30
    关注

    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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?