Add this to get .php files parsed as .php5 files
Code:
AddType application/x-httpd-php .php .php5
Or use a rewriterule to make all files that end in .php be parsed as php5 Code:
RewriteEngine On
RewriteBase /
RewriteRule (.*)\.php$ $1.php [L,T=application/x-httpd-php]
Or use the ForceType directiveCode:
<FilesMatch "\.(php|php5)$">
ForceType application/x-httpd-php
</Filesmatch>
Notice that all of these examples use "application/x-httpd-php" as the php5 type, but it could be different depending on your web-host and php5 installation.. ie. might be "php5-cgi" if you are using a cgi'd version of php5