Array being chopped off over ajax post. Ajax posting limit?

后端 未结 4 2087
温柔的废话
温柔的废话 2021-01-02 11:37

I have a multidimensional array, which consists of 426 smaller arrays, which also comprise of 4 attributes.. Below is an example of one of 426 arrays...

             


        
4条回答
  •  一向
    一向 (楼主)
    2021-01-02 12:21

    Try setting your php_value post_max_size to at least 16M in your .htaccess and max_input_time so that you do not get a time out.

    php_value post_max_size 16M
    php_value max_input_time 4000
    

提交回复
热议问题