Edit report at https://bugs.php.net/bug.php?id=62172&edit=1

 ID:                 62172
 Comment by:         jdr at alexanderinteractive dot com
 Reported by:        jdr at alexanderinteractive dot com
 Summary:            FPM not working with Apache httpd 2.4 balancer/fcgi
                     setup
 Status:             Open
 Type:               Bug
 Package:            FPM related
 Operating System:   CentOs 6
 PHP Version:        5.4.3
 Block user comment: N
 Private report:     N

 New Comment:

I added a quick patch that just duplicates some of the committed proxy:fcgi 
code. It seemed to work for me.

Unfortunately there still seems to be at least 1 issue on the apache side.
When adding query strings to a php page, I get 404s. This works fine without 
the balancer set up.

It could be related to this bug 
https://issues.apache.org/bugzilla/show_bug.cgi?id=51077


Previous Comments:
------------------------------------------------------------------------
[2012-05-27 22:27:00] jdr at alexanderinteractive dot com

Description:
------------
See bug https://bugs.php.net/bug.php?id=54152 for a description of almost the 
exact same problem.
PHP now does recognize the proxy:fcgi Apache httpd 2.4 adds to the 
SCRIPT_FILENAME but it does not recognize proxy:balancer


Test script:
---------------
Example of working apache 2.4 config

RewriteRule ^/?(.*\.php(/.*)?)$ 
fcgi://127.0.0.1:9000/usr/local/home/magento/app/current/$1 [P,L]

Example of non-working apache 2.4 config

<Proxy balancer://magento/>
    BalancerMember fcgi://localhost:9000/
</Proxy>

# Serve PHP through php-fpm: 
RewriteRule ^/?(.*\.php(/.*)?)$ 
balancer://magento/usr/local/home/magento/app/current/$1 [P,L]

Expected result:
----------------
I expect the same results from both apache configurations

Actual result:
--------------
I get a 404 on all php pages when using balancer


------------------------------------------------------------------------



-- 
Edit this bug report at https://bugs.php.net/bug.php?id=62172&edit=1

Reply via email to