Switch PHP version of Drupal on Webfaction

Submitted by ravisagar on Mon, 05/16/2016 - 10:29

Often we encounter problems when hosting Drupal site on shared servers like webfaction. The PHP version that we used while development of the site is not there on the hosting server. If you are using webfaction then the steps below can be used to switch your site's PHP version.

Create a symlink to the version of php you want.


ln -s /home/php-cgi/php56.cgi php56.cgi

This symbolic link will work for webfaction. Check with your hosting provider the location of php56.cgi file path.

Now add the following lines in the end of Drupal's .htaccess file


Action php56-cgi /php56.cgi

SetHandler php56-cgi

That is it. Go to Drupal's Status report and you should see PHP 5.6 now being shown as the PHP version.