I'm having a sort of odd issue with PHP 5.3.9, Apache 2.4 on Windows 7 x64.
I use FastCGI 2.3.9 for Apache 2.4 (both are compiled with VC11) to fork my virtual hosts between PHP 5.6.18 and PHP 5.3.9.
The issue is that when I enable curl in the config of PHP 5.3.9, every page of every virtual host which uses this PHP version starts showing
Error 500 (Internal server error).
Apache error log said the following after I've opened Example Link page:
[fcgid:warn] [pid 6720:tid 1528] (OS 109)The pipe has been ended. : [client 198.101.238.203:62561] mod_fcgid: get overlap result error
[core:error] [pid 6720:tid 1528] [client 198.101.238.203:62561] End of script output before headers: index.php
When I disable curl, the error disappears. Though, I need this module to make the CMS I need to install on this server to work.
Since I am using Windows (sadly), installing PHP-FPM is not something I can allow myself (but if you know any way to install it under Win7 x64, please tell me).
Please share me any ideas on how this issue can be solved. How to make fcgid and curl friends? :)
Thanks for your answers and efforts!