apache error = get overlap result error

Asked

Viewed 348 times

4

I have an apache error that I can’t fix, in php log no error is reported only in apache.

Has anyone identified anything like this? Below the apache log:

[Mon Jan 05 10:20:26 2015] [warn] [client 127.0.0.1] (OS 109)The pipe was finalized. : mod_fcgid: get overlap result error

[Thu Jan 15 16:51:06 2015] [error] [client 127.0.0.1] Premature end of script headers: processNotas.php

  • PHP Version 5.4.32 (Windows 7 Business Edition) i586 the same error for Linux where is the production server.

  • As amazing as it seems sometimes this error is not due to bad configuration in apache, sometimes it is due some problem with script or php extension. In the case as in your Linux and Windows occur the same problem is probably a problem in your script. So post the script that causes the problem.

1 answer

1

See if you can add that to your vhosts.conf solves your problem:

<IfModule mod_fcgid.c>
  # 5 minutes for IO timeout, default is 40 seconds
  FcgidIOTimeout 300
</IfModule>
  • Actually I had already set up straight on httpd.conf with Fcgidiotimeout 3600; but I tried your suggestion and the same error occurred.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.