0

我在 Media Temple 的 apache 服务器上使用 PHP/MySQL 设置。

当尝试通过客户的管理部分上传大文件时(通常会有 100MB 的文件上传),我收到此错误:

[Thu Aug 16 14:30:38 2012] [warn] [client 64.46.17.53] mod_fcgid: HTTP request length 16785212 (so far) exceeds MaxRequestLen (16777216) 

在 fcgid.conf 文件中,我有以下行:

FcgidMaxRequestLen 1073741824600

我也尝试将其更改为

MaxRequestLen 1073741824600

无论如何,整个文件现在看起来像这样,当我重新启动 apache 时,配置中没有错误。

# This is the Apache server configuration file for providing FastCGI support
# via mod_fcgid
#
# Documentation is available at http://fastcgi.coremail.cn/doc.htm

LoadModule fcgid_module modules/mod_fcgid.so

<IfModule mod_fcgid.c>

<IfModule !mod_fastcgi.c>
    AddHandler fcgid-script fcg fcgi fpl
</IfModule>

  FcgidIPCDir /var/run/mod_fcgid/sock
  FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm

  FcgidIdleTimeout 600
  FcgidMaxRequestLen 1073741824600
  FcgidBusyTimeout 600
  FcgidProcessLifeTime 30
  MaxRequestLen 1073741824600
  FcgidMaxProcesses 20
  FcgidMaxProcessesPerClass 8
  FcgidMinProcessesPerClass 0
  FcgidConnectTimeout 600
  FcgidIOTimeout 600
  FcgidInitialEnv RAILS_ENV production
  FcgidIdleScanInterval 10

</IfModule>

我还需要覆盖哪些其他值?我有 SSH root 访问权限,尽管对命令行输入很不适应。

4

2 回答 2

0

我猜你的价值太高了。检查MediaTemple Wiki 以了解该问题,它为您提供 1Gb 的配置。

于 2012-08-17T06:40:47.283 回答
0

尽管 PHP 不在支持范围内,但我可以为您提供一篇关于编辑 PHP 的 (mt) 知识库文章http://kb.mediatemple.net/questions/137。我希望这会给你一些帮助。但是,我们总是在这里回答问题并指导您正确的方向。如果您有任何其他问题,请随时与我们联系。我们通过聊天、电话和 Twitter 全天候 24/7 提供服务。祝你有美好的一天!

Kat D. (mt) Media Temple 社交媒体团队

于 2012-08-20T17:46:10.040 回答