[imp] Apache SSL and Horde/IMP

Amith Varghese amith@xalan.com
Tue Oct 22 19:53:07 2002


> Unfortunately, anytime I do this instead of getting an HTML
> page I get the PHP code showing up on screen.
> 
> Anyone have any ideas?

The reason you are probably getting this is because you have the following in
your httpd.conf

<IfDefine SSL>
AddModule mod_ssl.c
AddModule mod_php4.c
</IfDefine>

You need to take the "AddModule mod_php4.c" line and put that outside of the
<IfDefine SSL> block.

Amith