Is PHP 4.1.1 backward compatible with .php3 files? I have the correct entries in my httpd.conf file:
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3 .phtml
Action application/x-httpd-php3 /php/php.exe
#AddType application/x-httpd-php3-source .phps
#
And for PHP 4.x, use:
#
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
.php files are working fine, but .php3 files just show the source as text. Do I have to rename all the .php3 files to .php or is there a way to have PHP4 work with .php3 files? Thanks.
Matt