new limit within php: 1000 fields per POST. Does someone know, if the number can be influenced?

后端 未结 9 2075
北荒
北荒 2020-11-27 04:53

In newer PHP-Versions the count of input-fileds per formula (POST) will be limited to 1000 (unverified information). It seams that this limit is already installed in certain

9条回答
  •  伪装坚强ぢ
    2020-11-27 05:07

    Apparently it looks like a patch on linux environment causing this issue. If your server has this patch 'suhosin', likely to be the issue. Also its not possible to override this in runtime rather include in your php.ini

    suhosin.post.max_array_depth 
    
    suhosin.post.max_array_index_length 
    
    suhosin.post.max_name_length 
    
    suhosin.post.max_totalname_length 
    
    suhosin.post.max_vars 
    
    suhosin.post.max_value_length 
    

提交回复
热议问题