Request Entity Too Large

后端 未结 5 1758
天涯浪人
天涯浪人 2020-12-06 00:38

I get this message,

Request Entity Too Large
The requested resource
/index.php
does not allow request data with POST requests, or the amount of data provide         


        
5条回答
  •  一整个雨季
    2020-12-06 01:26

    My server is Apache. It was mod_security module which was preventing post of large data approximately 171 KB. I did below configurations in mod_security.conf

    SecRequestBodyNoFilesLimit 10486000
    SecRequestBodyInMemoryLimit 10486000
    

提交回复
热议问题