PHP 5.2 reached its end of life some time ago with the latest version, 5.2.17, having been released in January of 2011. On July 30th we will be changing the default version of PHP on our cpanel75 server from 5.2 to 5.3. This is ultimately in preparation to remove PHP 5.2 from our servers entirely.
At this point there are zero compatibility issues to worry about with common scripts. As long as you've kept up with patches and updates, you won't run into any issues at all. If you would like, you can test an existing site with PHP 5.3 right now by adding the following to your .htaccess file:
For the time being you can also force your site to use PHP 5.2, even after this change on July 30th, by adding the following to your .htaccess file:
A separate announcement will be made at a later date when we've scheduled removal of PHP 5.2 from our servers entirely.
At this point there are zero compatibility issues to worry about with common scripts. As long as you've kept up with patches and updates, you won't run into any issues at all. If you would like, you can test an existing site with PHP 5.3 right now by adding the following to your .htaccess file:
Code:
AddHandler application/x-httpd-php53 .php
Code:
AddHandler application/x-httpd-php52 .php
Comment