Reading all HTTP headers in PHP running in "SUExec" setup
I have a client on a fairly standard cPanel box asking for the apache specific module to be added. I'm presuming it isn't there because the server runs with the PHPSUExec option which essentially means PHP (4.4.2, BTW) is running in CGI mode and not as an Apache module.Apparently the headers they want to read are not made available in the $_SERVER[] super-global. Is there a way of getting access to all the headers in a request in PHP aside from moving away from phpSUexec (which isn't going to happen) so the apache_request_headers function is present?