I've successfully compiled Apache2 with PHP4 as a DSO. My httpd.conf has the lines :
LoadModule php4_module modules/libphp4.so
<Files *.php>
SetOutputFilter PHP
SetInputFilter PHP
</Files>
but when I try to load info.php containing <?PHP phpinfo(); ?>
it simply loads it in plain text.
Can anyone tell me why ?