Rumah > Artikel > Tutorial CMS > PHPCMS上传错误413?
PHPCMS上传错误413?
PHPCMS上传错误413,其原因Nginx默认限制最大上传文件就是1M,所以上传文件超过1M就会报413错误,解决方法:找到“nginx.conf”配置下的“client_max_body_size”,更改为10M即可。
Apache服务器解决方法
修改下Apache配置文件中的LimitRequestBody配置,如果是虚拟主机,请联系空间商帮助修改。
具体步骤:
在apache环境中上传较大软件的时候,有时候会出现413错误,出现这个错误的原因,是因为apache的配置不当造成的,找到apache的配置文件目录也就是conf目录,和这个目录平行的一个目录叫conf.d打开这个conf.d,里面有一个php.conf
目录内容如下:
## PHP is an HTML-embedded scripting language which attempts to make it# easy for developers to write dynamically generated webpages.# LoadModule php4_module modules/libphp4.so ## Cause the PHP interpreter handle files with a .php extension.# SetOutputFilter PHPSetInputFilter PHPLimitRequestBody 6550000 ## Add index.php to the list of files that will be served as directory# indexes.#DirectoryIndex index.php
错误就发生在这个LimitRequestBody配置上,将这个的值改大到超过你的软件大小就可以了
如果没有这个配置文件请将
SetOutputFilter PHP SetInputFilter PHP LimitRequestBody 6550000
写到apache的配置文件里面即可。
推荐教程:《PHPCMS教程》
Atas ialah kandungan terperinci PHPCMS上传错误413?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!