Build PHP-release without re-build existing php-release

Aar

Verified User
Joined
Feb 10, 2005
Messages
209
Location
Netherlands
Is it also possible to install an additional PHP release (3 or 4) without having to rebuild the existing versions? The process to build takes about 8 minutes per PHP-relasse. (I have 1 Core on my VPS and no SSD unfortunately). All of my PHP-releases are running on fpm-php.

Or it this not recommend? ;)

When i run this, all of my PHP-relasse will be rebuild what takes extra time:
Code:
./build update
./build php n
 
Last edited:
Hello,

Try

Code:
./build php_expert [B]php_release php_mode[/B]

possible variants:

Code:
php_expert 5.3 php-fpm
php_expert 5.4 php-fpm
php_expert 5.5 php-fpm
php_expert 5.6 php-fpm
php_expert 7.0 php-fpm
php_expert 7.1 php-fpm
php_expert 7.2 php-fpm
php_expert 7.3 php-fpm


Can not say for sure whether or not it will create all required init files after compilation, anyway give it a try.
 
Last edited:
Back
Top