Edit report at https://bugs.php.net/bug.php?id=62221&edit=1
ID: 62221 Updated by: larue...@php.net Reported by: koalay at gmail dot com Summary: Cannot use PATH_INFO pattern when compiled with apxs2filter -Status: Open +Status: Feedback Type: Bug Package: Apache2 related Operating System: Fedora 15 PHP Version: 5.4.3 Block user comment: N Private report: N New Comment: did you set AcceptPathinfo on ? http://httpd.apache.org/docs/2.0/en/mod/core.html#acceptpathinfo Previous Comments: ------------------------------------------------------------------------ [2012-06-04 04:11:50] koalay at gmail dot com Description: ------------ When using PHP, compiled with the option "--apxs2filter" against Apache 2.4.2, Apache would not process any URLs like "foo.php/bar". When compiled with "--apxs2", the URL "foo.php/bar" would be passed to "foo.php" and the $_SERVER['PATH_INFO'] would be come '/bar'. Test script: --------------- <?php var_dump($_SERVER['PATH_INFO']); ?> Expected result: ---------------- string(5) "/blog" Actual result: -------------- Not Found The requested URL /foo.php/bar was not found on this server. ------------------------------------------------------------------------ -- Edit this bug report at https://bugs.php.net/bug.php?id=62221&edit=1