• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

11.5.3 Multi-PHP Error when registering PHP handler. (PHP 5.5.4 from source)

DanielMT

New Pleskian
Hello.

I'm using Plesk 11.5.3 on CentOS 6.4 with Apache 2.2.15, MySQL 5.5.30 and a default PHP 5.4.13 installation (A Media Temple DV Managed server). I'm trying to install a side-installation of PHP 5.5.4 (from source). I'm able to configure PHP and make the installation fine, but I am receiving an error when registering the handler with the following command:

/usr/local/psa/bin/php_handler --add -displayname 5.5.4 -path /usr/local/php-5.5.4/bin/ -phpini /etc -type fastcgi -id 5.5.4-custom

Here is the error I receive:

2013-10-14T02:57:48-07:00 ERR (3) [util_exec]: proc_close() failed
Unable to register the PHP handler: can not get version from /usr/local/php-5.5.4/bin/

Steps I took:

Gunzip/Untar PHP 5.5.4 directly from php.net

./configure --prefix=/usr/local/php-5.5.4 \
--sysconfdir=/etc \
--with-config-file-path=/etc \
--disable-ipv6 \
--with-openssl \
--with-kerberos \
--with-zlib \
--enable-bcmath \
--enable-calendar \
--enable-exif \
--enable-ftp \
--with-openssl-dir=/usr \
--with-t1lib \
--with-gettext \
--enable-mbstring \
--with-mysql \
--with-mysqli=mysqlnd \
--with-mysql-sock=/var/run/mysql \
--with-pdo-mysql \
--without-pdo-sqlite \
--enable-sockets \
--with-iconv

make

make test

make install

cp php.ini-development /usr/local/lib/php.ini

/usr/local/psa/bin/php_handler --add -displayname 5.5.4 -path /usr/local/php-5.5.4/bin/ -phpini /etc -type fastcgi -id 5.5.4-custom

Any ideas? http://kb.parallels.com/en/117768 does not help as php -v yields the version of the default installation. Thanks!
 
IIRC, -path should point to the binary, not the directory it is located in. -phpini as well.

I am an idiot. That is indeed the path to PHP-CGI, but I did not include "php-cgi" at the end:

/usr/local/psa/bin/php_handler --add -displayname 5.5.4 -path /usr/local/php-5.5.4/bin/php-cgi -phpini /usr/local/lib/php.ini -type fastcgi -id 5.5.4-custom
The new PHP handler with the id "5.5.4-custom" was successfully registered.

Thanks, Nikolay :)
 
Back
Top