9

页面导致 500 错误,日志显示:

[Wed Mar 20 11:19:23 2013] [warn] [client 127.0.0.1] (104)Connection reset by peer: mod_fcgid: ap_pass_brigade failed in handle_request_ipc function

当您尝试在类别页面上查看 90 种产品时,它会发生在柠檬摊网站上。从每页 60 到 90 的步骤似乎太多,并导致 500 错误。

该页面在错误前加载不超过 4 秒左右,并且服务器上运行的许多其他网站都没有遇到此问题。

到目前为止,我一直认为这是由于环境设置造成的,而不是由 Lemonstand 引起的。我已经用谷歌搜索了这个并尝试了各种配置设置以使其正常运行,到目前为止还没有修复它。下面是当前的 fcgid 配置,我已经注释掉了我尝试更改的一些变量。

Fcgid.conf:

<IfModule mod_fcgid.c>
AddHandler php-fcgi .php
Action php-fcgi /fcgi-bin/php-fcgi-wrapper
AddType application/x-httpd-php .php
Alias /fcgi-bin/ /var/apache/fcgi-bin/

FcgidConnectTimeout 180
FcgidIOTimeout 600
FcgidBusyTimeout 3600
FcgidMaxRequestLen 226777216
FcgidFixPathinfo 1
#FcgidOutputBufferSize 65536
#FcgidProcessLifeTime 30
#FcgidMaxRequestsPerProcess 500
FcgidIdleTimeout 60
#FcgidIdleScanInterval 1
#FcgidBusyTimeout 60
#FcgidBusyScanInterval 1
#FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 100000

<Location /fcgi-bin/>
SetHandler fcgid-script
Options +ExecCGI
Order allow,deny
Allow from all
</Location>
</IfModule>
4

1 回答 1

2

这是PHP-FCGI您收到的限制错误。您需要调整PHP_FCGI_MAX_REQUESTS域的“fcgi-bin/php5.fcgi”文件中的“ FcgidMaxRequestsPerProcess”变量或 Apache 配置文件中的“”变量。

http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html#examples

于 2014-12-31T09:49:52.033 回答