This is an old revision of the document!


How to set different PHP versions per directories using PHP Selector for LSWS

Cloudlinux supports different PHP versions per directory.If need minor manual changes:

Add the following section to the end of /opt/suphp/etc/suphp.conf :

application/x-httpd-php52="php:/opt/alt/php52/usr/bin/php-cgi" 
application/x-httpd-php53="php:/opt/alt/php53/usr/bin/php-cgi" 
application/x-httpd-php54="php:/opt/alt/php54/usr/bin/php-cgi" 
application/x-httpd-php55="php:/opt/alt/php55/usr/bin/php-cgi" 
application/x-httpd-php56="php:/opt/alt/php56/usr/bin/php-cgi"

Add suphp handlers for each version, this should be done before other configs. On cPanel server, edit /usr/local/apache/conf/includes/pre_main_global.conf and add following section:

<IfModule mod_suphp.c> 
<Directory /> 
suPHP_AddHandler application/x-httpd-php52 
suPHP_AddHandler application/x-httpd-php53 
suPHP_AddHandler application/x-httpd-php54 
suPHP_AddHandler application/x-httpd-php55 
suPHP_AddHandler application/x-httpd-php56 
</Directory> 
</IfModule>

You can do the following to make LiteSpeed compatible with php selector per directory.

Step1: Force upgrade to the latest LSWS version

  /usr/local/lsws/admin/misc/lsup.sh -f -v <version>
  

Step2: Create handlers for lsphp52/lsphp53/lsphp54/lsphp55/lsphp56/lsphp70 pointing to cloud linux PHP selector lsphp binary, such as /opt/alt/php5x/usr/bin/lsphp.

Step3: Create suffixed .php52 .php53 .php54 .php55 .php56 .php70 and associate them with above related external app handlers.

Step4: Restart LSWS.

  • Admin
  • Last modified: 2016/03/18 17:52
  • by Jackson Zhang