phpfarm

Issue activating a php extension using PHP Farm

核能气质少年 提交于 2019-12-30 11:42:06
问题 I am implementing a software (Getsy) that requires PHP 5.4 and ZendGuard 6 (ZendGuard). For the occasion I am using an AWS Instance of Ubuntu 14.04. As Ubuntu 14.04 comes with PHP 5.5+ by default, I needed to install PHP 5.4. To do that I installed PHP Farm. To change PHP versions among sites I have this cgi-bin script: #!/bin/sh PHP_FCGI_CHILDREN=3 export PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS=5000 export PHP_FCGI_MAX_REQUESTS exec /opt/phpfarm/inst/bin/php-cgi-5.4.30 For my specific site

multiple php on apache centos

♀尐吖头ヾ 提交于 2019-12-03 07:09:51
问题 How can I get multiple php versions running on Centos 6.5 at the same time ? Here's how. Requirements Centos 6.5 (Possible works with 6.6 and 7) Apache Apache/2.2.15 (Possible works with other versions) This guide installs and uses FASTCGI (see the comments for alternative installation) PHPFARM This install was done this way so it would be compatable with iredmail. You can install iredmail on a server with this set up. Step 1 Installing PHPFarm yum install gcc libxml2-devel openssl-devel

multiple php on apache centos

我与影子孤独终老i 提交于 2019-12-02 20:43:55
How can I get multiple php versions running on Centos 6.5 at the same time ? Here's how. Requirements Centos 6.5 (Possible works with 6.6 and 7) Apache Apache/2.2.15 (Possible works with other versions) This guide installs and uses FASTCGI (see the comments for alternative installation) PHPFARM This install was done this way so it would be compatable with iredmail. You can install iredmail on a server with this set up. Step 1 Installing PHPFarm yum install gcc libxml2-devel openssl-devel bzip2-devel curl-devel libjpeg-devel freetype-devel icu libicu-devel gcc-c++ postgresql-devel aspell-devel

Issue activating a php extension using PHP Farm

淺唱寂寞╮ 提交于 2019-12-01 14:15:29
I am implementing a software ( Getsy ) that requires PHP 5.4 and ZendGuard 6 ( ZendGuard ). For the occasion I am using an AWS Instance of Ubuntu 14.04. As Ubuntu 14.04 comes with PHP 5.5+ by default, I needed to install PHP 5.4. To do that I installed PHP Farm. To change PHP versions among sites I have this cgi-bin script: #!/bin/sh PHP_FCGI_CHILDREN=3 export PHP_FCGI_CHILDREN PHP_FCGI_MAX_REQUESTS=5000 export PHP_FCGI_MAX_REQUESTS exec /opt/phpfarm/inst/bin/php-cgi-5.4.30 For my specific site (site changed for ****), I have this configuration in /etc/apache2/sites-enabled/****.conf :