gpt4 book ai didi

php - 如何避免 Request Entity Too Large 413 错误

转载 作者:IT王子 更新时间:2023-10-28 23:47:03 31 4
gpt4 key购买 nike

如何避免这个 413 错误?

Request Entity Too Large

The requested resource /serverpath/reports.php does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

Apache Server at demo3.website_name Port 80

那么,请问有人可以帮忙设置 php.ini 以及如何设置 htaccess 以允许覆盖状态吗

最佳答案

如何在 NGINX 中修复它? client_max_body_size

要解决此问题,您需要增加 client_max_body_size 指令的值。该指令定义了 Nginx 在 HTTP 请求中将接受的最大数据量。默认情况下,此值设置为 1 兆字节,这意味着如果您尝试上传大于 1 兆字节的文件,您将收到错误 413:请求实体太大页面。您可以在三个级别插入此指令:

  • 在 http block 中:这将为您的配置中的所有服务器和位置设置指令值n

  • 在服务器 block 中:这将为一个特定服务器的所有位置设置指令值

  • 在位置 block 中:这将为特定服务器中的一个特定位置设置指令值

在本例中,我将把它插入我的 http block 并将其设置为 500 兆字节:

http {

client_max_body_size 500M; # allows file uploads up to 500 megabytes
[...]
}

来源: http://cnedelcu.blogspot.com.ar/2013/09/nginx-error-413-request-entity-too-large.html

关于php - 如何避免 Request Entity Too Large 413 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18121227/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com