PHP, FastCGI and PATH_INFO
805928Nov 22 2007 — edited Jan 1 2008hello,
i'm using PHP 5.2.5 with FastCGI on Web Server 7.0U1. everything is working fine, except that pathinfo requests (e.g. foo.php/bar) don't work; instead, PHP outputs "No input file found."
my FastCGI config looks like this:
NameTrans fn="pfx2dir" from="/admstats" dir="/projects/admstats/www"
[...]
<Object ppath="/projects/admstats/www/*">
Service fn="responder-fastcgi" type="application/x-php" bind-path="localhost:5001" reuse-connection="true"
</Object>
i've tried setting cgi.fix_pathinfo=1 in php.ini, but it made no difference. how can I make pathinfo URLs work?