Edit report at https://bugs.php.net/bug.php?id=62221&edit=1
ID: 62221 User updated by: koalay at gmail dot com Reported by: koalay at gmail dot com Summary: Cannot use PATH_INFO pattern when compiled with apxs2filter -Status: Feedback +Status: Open Type: Bug Package: Apache2 related Operating System: Fedora 15 PHP Version: 5.4.3 Block user comment: N Private report: N New Comment: Oh, I didn't know that before. It works now with "AcceptPathInfo On". Thanks a lot. Please mention this in the documentation so others would not running in to this issue. Thanks a lot! Previous Comments: ------------------------------------------------------------------------ [2012-06-04 07:56:17] larue...@php.net did you set AcceptPathinfo on ? http://httpd.apache.org/docs/2.0/en/mod/core.html#acceptpathinfo ------------------------------------------------------------------------ [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