Bug #576
closedQUERY_STRING not set through the 404 error handler using fcgi
Description
When using the 404 error handler, and pointing it to a php file (over fcgi), the QUERY_STRING is set to an empty string. This is tested in both 1.4.8 and 1.4.11.
-- timo
Updated by andrewlkho about 19 years ago
I've also verified this with lighttpd 1.4.11 using PHP 5.0.4 over FastCGI. $_GET is also blank -- I don't know where PHP gets that from, but I'd assume they're related.
Jan, do you want any more information (such as a strace)?
Updated by andrewlkho almost 19 years ago
Actually, is this deliberate or a bug? REQUEST_URI is set, so it's possible to obtain QUERY_STRING from that. Jan?
Updated by Anonymous over 18 years ago
In case somebody stumbles on this, this did the trick for me:
function fix_querystring() {
if (!strstr($_SERVER'REQUEST_URI','?')) return;
$_SERVER'QUERY_STRING' = preg_replace('#^.*?\?#','',$_SERVER'REQUEST_URI');
parse_str($_SERVER'QUERY_STRING', $_GET);
}
Updated by andrewlkho over 18 years ago
According to this, this is actually deliberate, so you can close this ticket.
Updated by stbuehler almost 17 years ago
- Status changed from New to Fixed
- Resolution set to invalid
Updated by costela over 15 years ago
- Status changed from Invalid to Reopened
Could the rationale behind the decision to not pass the QUERY_STRING to the error-handler be explained?
I imagine there's a good reason for it, but I couldn't grok it from my superficial scouring of the code.
If there's no clear reason, would a patch for it be accepted?
Cheers
Updated by stbuehler over 15 years ago
- Status changed from Reopened to Invalid
the error-handler uri could contain a query-string. and use mod_magnet instead of error-handler.
Also available in: Atom