You can use PHP with Orion simply by putting your PHP files 
in your Orion web directories. 
If you look in global-web-application.xml you will see the following
information:
  <servlet>
   <servlet-name>php</servlet-name>
   <servlet-class>com.evermind.server.http.CGIServlet</servlet-class>
   <init-param>
   <param-name>interpreter</param-name>
    <param-value>php</param-value>
   </init-param>
  </servlet>

  <servlet-mapping>
   <servlet-name>php</servlet-name>
   <url-pattern>/*.php</url-pattern>
  </servlet-mapping>

  <servlet-mapping>
   <servlet-name>php</servlet-name>
   <url-pattern>/*.php3</url-pattern>
  </servlet-mapping>

Which maps *.php and *.php3 to the PHP interpreter.
Just make sure PHP is in your path and it should
work fine.
----- Original Message ----- 
From: "Andrew Panagos" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Saturday, August 19, 2000 8:21 AM
Subject: Re: what are you missing in apache-like functionality?


> List So far
> 1) mod_rewrite
> 2) mod_expires
> 
> 3) I would like php to the list so desired Apache to Orion wants. We have
> alot of investment in php files. It would be great to be able to use them
> with Orion instead of having to run Apache and Orion
> 
> Andrew
> 
> 
> 


Reply via email to