Project

General

Profile

Actions

Bug #576

closed

QUERY_STRING not set through the 404 error handler using fcgi

Added by Anonymous about 19 years ago. Updated over 15 years ago.

Status:
Invalid
Priority:
Normal
Category:
core
Target version:
-
ASK QUESTIONS IN Forums:

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

Actions #1

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)?

Actions #2

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?

Actions #3

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);
}

Actions #4

Updated by andrewlkho over 18 years ago

According to this, this is actually deliberate, so you can close this ticket.

Actions #5

Updated by stbuehler almost 17 years ago

  • Status changed from New to Fixed
  • Resolution set to invalid
Actions #6

Updated by stbuehler over 16 years ago

  • Status changed from Fixed to Invalid
Actions #7

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

Actions #8

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.

Actions

Also available in: Atom