What is the size limit of a post request?

后端 未结 9 1391
悲&欢浪女
悲&欢浪女 2020-11-22 02:25

Sorry if this is duplicate,I would think it would be but couldn\'t find anything.

I have a flex application that I am posting data back to a php/mysql server via IE.

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 02:52

    You can post large amount of data by setting php.ini variable: max_input_vars Default size of this variable is 1000 but if you want to sent large amount of data you have to increase the size accordingly. If you can't set the size from ini_set you have to do it through htaccess or by doing changes into php.ini file directly.

    max_input_vars  2500
    memory_limit    256M
    

提交回复
热议问题