首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

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

2012-08-03 
nginx,php不能上传大图问题(413)上传图片 出现错误:413 Request Entity Too Large 修改nginx.conf 在http{

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

热点排行