On Wed, 2004-11-17 at 19:35, Menon, Girish (GE Healthcare) wrote: > Hi, > > I am using Apache on Linux and wanted to incorporate PHP as well. The > problem is that I have already deployed Apache to a lot of my customers. Is > there some sort of plugin that I can install over Apache so that I can use > PHP? > > Thanks and Regards > Girish >
If the Apache httpd that you have deployed has mod_so.c compiled into it (doing "httpd -l" as root will list the compiled in modules) then you could add PHP as a DSO to Apache. Both the PHP manual and the INSTALL file in the PHP source has details. Otherwise you will need to recompile Apache. Regards Chris