• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Multiple PHP Versions

kevin258

New Pleskian
Hello, i have a question.

I have installed PHP5.5.12 as the secondary php version. The primary version (installed with plesk) is php5.4 .
Now when i try to install extensions, every time they are installing to the primary version.

How can i install extensions special for the other version?

I have Debian 7 x64 and parallels plesk 11.5
 
you should use something like this
phpize --with-php-config=/usr/local/php5511-cgi/bin/php-config

or

./configure --with-php-config=/usr/local/php5511-cgi/bin/php-config

or for PECL

pecl -C ./pear.conf (in your php 5.5.12 directory)
 
Back
Top