dev@grizzly.java.net

JSP and PHP doesn't like each others in GWS

From: Survivant 00 <survivant00_at_gmail.com>
Date: Fri, 19 Jun 2009 20:40:29 -0400

I need advice for this one.

I got JSp working. I got PHP working.

but not in the same time.. here the reason

http://localhost:8080/twitter/index.html
for JSP or servlet I need to have a SA with a rootfolder where the war file
is.(c:\demo\twitter.war)

sa.setRootFolder(rootFolder);

http://localhost:8080/wordpress/index.php
but for PHP, Quercus retrieve the filename from the method : getRealPath();
and because of that I need to have a rootfolder

sa.setRootFolder(rootFolder+context); and it will works.
(c:\demo\wordpress)

I tried few combinaisions.. but I never got theses 2 to work in the same
time.