I think whats happening is that your php files are still trying to be served by the ruby server. Try changing the proxy setup to something like this:
ProxyRequests Off ProxyPreserveHost On ProxyPass /survey ! ProxyPass / http://localhost:2502/ ProxyPassReverse / http://localhost:2502/ Notice the extra line with "/survey !" in there. This should stop apache from sending requests that start with /survey to the proxy server. Hope it helps, or at least provides some other directions to look at. Kev http://www.digitalblueprint.co.uk On 9/26/06, Maurizio Balestrieri <[EMAIL PROTECTED]> wrote: > All configurations parameters are in the httpd.con files: > > http://pastie.caboo.se/15005 > > It seems the only different setting is in the proxypass directive for the > radiant-powered web site versus the static-php one. > > Any ideas, suggestion? > > Thank you. > > > On 9/26/06, Kevin Ansfield <[EMAIL PROTECTED] > wrote: > > One thing you may want to check is that your php configuration was not > > specified in the .htaccess where your survey script previously lived. > > > > > _______________________________________________ > Radiant mailing list > Post: [email protected] > Search: http://radiantcms.org/mailing-list/search/ > Site: > http://lists.radiantcms.org/mailman/listinfo/radiant > > -- Kevin Ansfield Technical Director BN23 Search Ltd. _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
