免费资源网 – https://freexyz.cn/
报错场景
我搭建的wordpress,上传主题无法上传,报错413
解决思路
报错413是因为Nginx对上传大小做了限制(Nginx默认限制上传大小为1MB),所以我们需要通过修改配置文件的方式来去除这个限制,或者说是提高这个限制标准。
解决方法
将client_max_body_size 20m;放在http{}下面
[root@localhost ~]#vim /etc/nginx/nginx.conf http { include /etc/nginx/mime.types; default_type application/octet-stream; client_max_body_size 20m; } [root@localhost ~]#systemctl restart nginx发现没有报413,但是提示上传大小超过定义值,这我们就好解决了
经过find搜索,发现php.ini在/etc下
[root@localhost ~]#vim /etc/php.ini upload_max_filesize = 2M 修改成 upload_max_filesize = 200M [root@localhost ~]#systemctl restart php-fpm.service #重启服务注意:如果用了代理服务器,代理服务器的配置文件也需要修改!
© 版权声明
THE END
暂无评论内容