I have mod_fcgid enabled and receive the following errors when trying to post to my site using xmlrpc, however the error has popped up a few times in other areas as well.
Running on centos 5.
as well as
I could not find a mod_fcgid.conf file anywhere so I created one in /usr/local/apache/conf/includes/ and added an include line to my main httpd.conf file
Inside I added:
Is this the correct place to put it, and how can I confirm 100% that these limits are being applied as the error was happening at random.
Thanks
Running on centos 5.
Code:
mod_fcgid: read data timeout in 40 seconds
Code:
mod_fcgid: HTTP request length 131385 (so far) exceeds MaxRequestLen (131072)
Inside I added:
Code:
<IfModule mod_fcgid.c>
MaxRequestLen 1000000000
IPCConnectTimeout 100
IPCCommTimeout 1000
</IfModule>
Thanks