413 request entity too large php,上传文件提示413 Request Entity Too Large错误的解决方法

余斗今天帮人在网站上传文件时,一直报错:413 Request Entity Too Large,显示如下:

413 request entity too large php,上传文件提示413 Request Entity Too Large错误的解决方法_第1张图片

提示为413错误,余斗查询一下,HTTP 413错误,(request entity too large),是HTTP协议状态码的一种,表示“请求实体过大”。当因请求的实体过大,超出服务器的处理能力,导致服务器无法处理请求时就会返回此错误代码,一般在上传文件时可能会出现此错误。

既然是上传文件大小的设置问题,那么修改配置文件就好了,余斗整理了三种服务器(nginx,apache,iis) 上的的解决方法:

一、 Apache服务器

找到apache的配置文件目录也就是conf目录,和这个目录平行的一个目录叫conf.d打开这个conf.d,里面有一个php.conf

目录内容如下:

# PHP is an HTML-embedded scripting language which attempts to make it

# easy fordevelopers to write dynamically generated webpages.

LoadModule php4_module modules/libphp4.so

# Cause the PHP interpreter handle files with a .php extension.

Se

你可能感兴趣的:(413,request,entity,too,large,php)