max size of a php post?

前端 未结 3 906
后悔当初
后悔当初 2021-01-03 06:30

Could it be that a POST request is limited to size? I have a large procedure I want to cache the output from. Basically I want to store a lare html-table in cache because of

3条回答
  •  孤独总比滥情好
    2021-01-03 07:33

    I just ran into this problem myself and found that since PHP 5.3.9 there is a new setting available which restricts the total number of post variables (not just the size).

    max_input_vars = 1000
    

    This may have been the same issue you were running into if you were using a nightly or release candidate version of PHP at the time.

提交回复
热议问题