Loading...

Knowledge Base
Categories: ,

Modify the PHP Version on Your Domain

Did you find this article helpful?
Copy Link

 
* Your feedback is too short
Share

You can now modify the PHP version on your domain super easily if you're a current Shared hosting customer with the PHP Selector module in cPanel.

With PHP Selector

PHP Selector resides in your cPanel dashboard. You can modify the PHP version of your domain, sub-domains, or parked domains.

PHP Selector

The modules present all locally installed PHP versions for the user to select. As a bonus, if your server is ever moved from PHP 5.3 to PHP 5.4 default, it will continue to work seamlessly. This is due to our updated PHP stack scripts that preserve legacy handler types with the PHP54 handler set.

Modify It

To modify the PHP version on your domain:

  1. Log in to your cPanel account.
  2. Click the PHP Selector icon near the bottom of the Software/Service section.
  3. Select your preferred PHP version in the PHP Version dropdown list.
  4. Click Set.

    PHP Selector Modify

Overall, this module is more about convenience than being fancy. It makes switching your PHP version so easy!

Use .htaccess

Modify It

You can also control the PHP version your sites or specific paths use with an htaccess file if you prefer a more granular/advanced level of control. The below modification can be placed in an account 'public_html/.htaccess' file to enable PHP 5.5 or 5.3 for the entire account or in a .htaccess of a specific directory (like 'public_html/wordpress/.htaccess') to enable the desired PHP version under that directory tree only.

To enable PHP 5.5 or 5.3, you must add one of the following htaccess options:

AddType application/x-httpd-php55 .php

Or

AddType application/x-httpd-php53 .php

The binary path to the PHP 5.5 and 5.3 installations, should you require it for executable PHP scripts or cronjobs, is located at:

/usr/local/php55/bin/php

and

/usr/local/php53/bin/php

As with the existing PHP 5.4 setup, when you enable PHP 5.5 or 5.3, it will respect any custom php.ini settings you may have under your account. In addition, all standard PHP modules and extensions from the existing PHP 5.4 installation are default enabled in PHP 5.5 and 5.3 to ensure the best compatibility possible.

 

See also Use Alternate PHP Installs

Did you find this article helpful?
Copy Link

 
* Your feedback is too short

Loading...