Home > php教程 > php手册 > body text

PHP限制上传文件大小的具体解决办法

WBOY
Release: 2016-06-13 11:05:55
Original
794 people have browsed it

我们在具体的实践中会发现在php.ini中设置文件上传大小的时候会非常麻烦,而且还很容易出错。那么,今天我们就教大家几种具体的解决方法:

PHP限制上传文件大小第一

在php.ini里面查看如下行:

upload_max_filesize = 8M

post_max_size = 10M

memory_limit = 20M

把这些值改成我所说的,看看有没有问题,另外要确认上传的

里没有类似下面的这行

这样也是限制上传大小用的。

PHP限制上传文件大小第二:

如果是apache 2 需要修改

/etc/httpd/conf.d/php.conf

中的LimitRequestBody 524288将524288(=512×1024)改大,比如5M(=5×1024×1024)

在PHP限制上传文件大小之后,文件上传就不会出现如上问题,上传不响应,上传现实该页无法现实也将得到解决!


source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template