No it doesn't ring a bell, but a simple test could be done, prior to installing ...
You could just create 2 files.. one .htacess and one .. phpscript or something similar
In the .htacess file, put the variations of the Apache directive we know about ..
| Code: |
<Files phpscript>
ForceType application/x-httpd-php
#SetHandler application/x-httpd-php
#SetHandler application/x-httpd-php5
#ForceType x-httpd-php
</Files>
|
The test PHP script can just be a simple echo statement. just enough to prove it is running.
| Code: |
<?php
echo '<h1>This PHP script is running</h1>';
?>
|
Then its just a matter of browsing to the "phpscript" file, if it doesn't run. try the next directive in the .htacess file.