Project

General

Profile

Actions

Bug #1797

closed

cgi.assign should accept command-line switches

Added by fumanchu over 16 years ago. Updated over 16 years ago.

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

Description

When connecting to PHP via CGI, it's often very useful to pass command-line switches to PHP; for example:

cgi.assign = (".php" => "/usr/bin/php -d doc_root=/home/fumanchu/apptests/htdocs")

Unfortunately, the above doesn't work, because mod_cgi tries to perform a stat() call on the entire string, and fails ("file not found"). Others have noticed this too: http://forum.lighttpd.net/topic/38896.

There might be an easy fix for this: just split `cgi_handler->ptr` by space chars and stat() the first atom. It wouldn't work on platforms that allow spaces in filenames, but that's far easier to work around than not having command-line args.

Actions #1

Updated by icy over 16 years ago

  • Status changed from New to Invalid

What platforms don't allow spaces in filenames? That "fix" would break a lot of stuff. -> not going to happen.
But there is an easy solution: use a wrapper script php-cgi.sh and assign .php to that

Actions

Also available in: Atom