Home >Backend Development >PHP Tutorial > nginx,php不能上传大图有关问题(413)

nginx,php不能上传大图有关问题(413)

WBOY
WBOYOriginal
2016-06-13 13:23:11883browse

nginx,php不能上传大图问题(413)
上传图片 出现错误:413 Request Entity Too Large
修改nginx.conf 在http{
    client_max_body_size 10M; #添加 改大点
}
修改php.ini 中

upload_max_filesize = 10M
post_max_size = 10M

重启nginx,php-fpm

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn