1

我刚刚在 Centos 6 上安装了 Plesk 11,我无法上传大于 17-18 Mo 的文件。

[警告] [客户端] mod_fcgid:HTTP 请求长度 16777368(到目前为止)超过 MaxRequestLen (16777216)

我这样设置我的 php.ini:

post_max_size = 150M

file_uploads = On

upload_max_filesize = 128M

memory_limit = 256M
  • 我试图/etc/httpd/conf.d/fcgid.conf 通过添加来修改

    FcgidMaxRequestLen 30000000

并重新启动apache;我仍然遇到同样的错误。

这是我尝试过的:

  • 我发现 FcgidMaxRequestLen 也设置在这个文件 /usr/local/psa/admin/conf/templates/default/domain/domainVirtualHost.php 更改,保存,apache 重新启动.. 同样的错误

  • 我尝试使用不同的大小设置 FcgidMaxRequestLen,1 giga,20 mo ect 仍然相同的错误。

  • 我尝试更改 http.conf 并添加以下内容:

    < IfModule mod_fcgid.c > MaxRequestLen 20000000 </IfModule >

我正在为每一个更改重新启动 apache。一定有一些我丢失的配置文件,但我不知道在哪里

4

1 回答 1

1

好的,这是解决方案:

http://stuffthatspins.com/2013/01/22/exceeds-maxrequestlen-16777216-plesk-mod_fcgid-unable-to-upload-large-files/

用 centos 重新配置域:

/usr/local/psa/admin/sbin/httpdmng --reconfigure-domain yourdomain.com

/sbin/service apache 重启

/sbin/service psa 重启

于 2014-06-04T11:26:47.083 回答