Comments on How To Build PHP 5.5 (PHP-FPM & FastCGI) With ionCube Loader, Zend OPcache And APCu For ISPConfig 3 (Debian Wheezy)

How To Build PHP 5.5 (PHP-FPM & FastCGI) With ionCube Loader, Zend OPcache And APCu For ISPConfig 3 (Debian Wheezy) Since ISPConfig 3.0.5, it is possible to use multiple PHP versions on one server and select the optimal PHP version for a website. This feature works with PHP-FPM (starting with PHP 5.3) and FastCGI (all PHP 5.x versions). This tutorial shows how to build PHP 5.5 as a PHP-FPM and a FastCGI version on a Debian Wheezy server. These PHP 5.5 builds include the ionCube Loader, Zend OPcache, and APCu.

7 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: appserver

This is amazing how to articles and really great to see how you present this to save us lots of time searching on google. :)

By: Harry

If I only want to use the php-fpm process that uses php 5.5.7 how do I disable the default debian php-fpm process that uses and older version of php? Will I save some memory doing this?

By: radim_h

Have you someone tried to install imagick php library?

When i tried pecl -C ./pear.conf install channel://pecl.php.net/imagick-3.2.0RC1

i get errorchecking ImageMagick MagickWand API configuration program... configure: error: not found. Please provide a path to MagickWand-config or Wand-config program.ERROR: `/tmp/pear/temp/imagick/configure --with-imagick' failed

 

By: Patrick

Hello

First, thanks for your greats HowTo, all are incredible

When install memcached "pecl -C ./pear.conf install memcached" I have the next error

-----------------------------

configure: error no, libmemcached sasl support is not enabled. Run configure with --disable-memcached-sasl to disable this check

-----------------------------

Any solution?

Thanks in advance

By: tom.1

I ran into the same error

I then installed memcached manually (paths apply for PHP 5.5.26)

It's important to use phpize and php-config of the target-version of php

-------------------------------------

cd /usr/local/src/php5-build

pecl -C /opt/php-5.5.26/etc/pear.conf download memcached

tar xzf memcached-2.2.0.tgz

cd memcached-2.2.0

/opt/php-5.5.26/bin/phpize

./configure  --with-php-config=/opt/php-5.5.26/bin/php-config --disable-memcached-sasl --prefix=/opt/php-5.5.26

make

make install

By: dongbak cha

Hi, all

I thank you for the kind guidance.

In My Centos7,  when i use  apt-get . . . ,

bash: apt-get: command not found...

What should I do?

 

By: suther

 Thank you, very much. 

Worked like a charm in 20 Minutes on my Debian Wheeze and ISPconfig 3.0.5.4p8

Now I'll search for an HowTo for php7 :)