PHP
PHP version
4.4.4
is currently the default PHP version, but files with an extension of .php5 will be processed by the PHP 5.2.0 processor.
To run any page that is written in PHP under the PHP5 on the server, you will need to use the 'AddType' and 'Action' option
in an .htaccess file. The commands would look something like these:
AddType application/x-httpd-php5 .php5 .php
Action application/x-httpd-php5 /global-bin/php5.cgi
Just add those to an .htaccess file in the directory where the PHP files are and Apache will run then under PHP5 rather than 4.

|