Hi,
I'm trying to attach a file to an email form, the problem I'm having is, if the attached file is of a certain size I get the following error in the log file.
-------------
(70007)The timeout specified has expired: mod_fcgid: can't get data from http client, referer
-------------
Am I right to think the error is to do with email script timing out before the attachment has been sent.
This the my config file.
Code:
# 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 40
FcgidProcessLifeTime 30
FcgidMaxProcesses 20
FcgidMaxProcessesPerClass 8
FcgidMinProcessesPerClass 0
FcgidConnectTimeout 30
FcgidIOTimeout 600
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 10
FcgidMaxRequestLen 1073741824
</IfModule>
I've changed the FcgidIOTimeout from 45 to 600. Is there another setting I need to increase.
Cheers
Wayne.
|