前端之家收集整理的这篇文章主要介绍了
php – 413请求实体太大,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我向服务器发布数据时,我使用
Nginx / 1.6和laravel我得到此
错误413请求实体太大.我试过很多
解决方案
1- set client_max_body_size 100m; in server and location and http in Nginx.conf.
2- set upload_max_filesize = 100m in PHP.ini
3- set post_max_size = 100m in PHP.ini
重新启动PHP5-fpm和Nginx之后问题仍未解决
在/etc/
Nginx/
Nginx.conf中的http部分中
添加’client_max_body_size xxM’,其中xx是您要允许的大小(以兆字节为单位).
http {
client_max_body_size 20M;
}
原文链接:https://www.f2er.com/php/135101.html