Home  >  Article  >  Backend Development  >  解决RHAS3中Apache2的PHP上传文件大小的限制

解决RHAS3中Apache2的PHP上传文件大小的限制

WBOY
WBOYOriginal
2016-06-01 14:28:09767browse

近日将论坛从VBB2升级到VBB3,将上传附件大小设置为2M,可每次上传超过500K的附件都会出错,而之前使用VBB2时却正常。

  仔细检查php.ini,其中的upload_max_filesize=8m,没有任何问题,然后将其中的:

max_execution_time = 30  
max_input_time = 60
memory_limit = 8M

数值分别调大到120、180、32M,还是没有任何作用,令人非常头痛!

  然后开始怀疑是http.conf配置文件出现的问题,但从头到尾检查了一遍也没发现任何异相,此问题智能搁置。

  有一天需要给服务器加入一个子域名,去更改/etc/httpd/conf.d/文件夹下的access.conf文件,发现此文件夹下还有一个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
AddType application/x-httpd-php php .php3
#
# Cause the PHP interPReter handle files with a .php extension.
#
<files>
    SetOutputFilter PHP
    SetInputFilter PHP
    LimitRequestBody 524288
</files>
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php

  LimitRequestBody 524288中的524288正好跟512KB相等,将其更改为2097152,不能上传超过2M附件的问题解决!

  再回忆一下,发现以前用VBB2时的操作系统为RHAS 2.1,用的自带的Apache 1.x版本,后来升级成VBB 3之前,顺便也把系统更换为RHAS3,而RHAS3自带的Apache为2.x版本,其配置文件的组织方式有所改变,也许自己编译安装的Apache就不会出现此种问题,可自己比较懒,不喜欢编译,呵呵.
Statement:
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