Php 7.2.4, 7.1.16, 7.0.29, 5.6.35

Erulezz

Verified User
Joined
Sep 14, 2015
Messages
905
Location
🇳🇱
Security & bug fix releases

http://www.php.net/ChangeLog-7.php#7.2.4
http://www.php.net/downloads.php

The PHP development team announces the immediate availability of PHP 7.2.4. This is a security release with also contains several minor bug fixes.

All PHP 7.2 users are encouraged to upgrade to this version.

For source downloads of PHP 7.2.4 please visit our downloads page, Windows source and binaries can be found on windows.php.net/download/. The list of changes is recorded in the ChangeLog.
 
I'm not seeing any of these versions in custombuild. Is there an issue with the releases?

Thanks,

Kevin
 
You can use these commands to update the PHP version

PHP 5.6
cd /usr/local/directadmin/custombuild
wget http://am1.php.net/get/php-5.6.35.tar.gz/from/this/mirror -O php-5.6.35.tar.gz
perl -pi -e "s#php56:.*#php56:5.6.35:aed69568b3cef4bf3de950ee84ee2cb2#" versions.txt
./build php


PHP 7.0
cd /usr/local/directadmin/custombuild
wget http://am1.php.net/get/php-7.0.29.tar.gz/from/this/mirror -O php-7.0.29.tar.gz
perl -pi -e "s#php70:.*#php70:7.0.29:b9af88aa9841c6d71ad5d76febdc14bd#" versions.txt
./build php

PHP 7.1
cd /usr/local/directadmin/custombuild
wget http://am1.php.net/get/php-7.1.16.tar.gz/from/this/mirror -O php-7.1.16.tar.gz
perl -pi -e "s#php71:.*#php71:7.1.16:b0e1becfd4a7b1d29438d59f47e4ad02#" versions.txt
./build php

PHP 7.2
cd /usr/local/directadmin/custombuild
wget http://am1.php.net/get/php-7.2.4.tar.gz/from/this/mirror -O php-7.2.4.tar.gz
perl -pi -e "s#php72:.*#php72:7.2.4:d41d8cd98f00b204e9800998ecf8427e#" versions.txt
./build php
 
Last edited:
Why would someone "try" to manually force updates in a 'clumsy' way like that and possibly screw up a running server?
I thought this is why Custombuild exists in the first place.
 
Colleagues offer solutions. If they do not like you then just ignore them. All responsibility for the changes you make is accepted by you.

Why would someone "try" to manually force updates in a 'clumsy' way like that and possibly screw up a running server?
I thought this is why Custombuild exists in the first place.
 
If you need to do it manually it is a perfectly fine solution to get the source files from php.net and install it yourself, there are no differences between the CB .tar.gz and php.net tar.gz files :) However to avoid downgrade warnings when you do ./build update you can also use custom_versions.txt :)
 
If you need to do it manually it is a perfectly fine solution to get the source files from php.net and install it yourself, there are no differences between the CB .tar.gz and php.net tar.gz files :) However to avoid downgrade warnings when you do ./build update you can also use custom_versions.txt :)

Thanks about custom_versions.txt file
 
Why would someone "try" to manually force updates in a 'clumsy' way like that and possibly screw up a running server?
I thought this is why Custombuild exists in the first place.

+1

My question was asking if there are problems with the new versions, which may be causing a delay. It being a long weekend is probably the best answer so far.

Kevin
 
I have sent an e-mail to DirectAdmin to add this versions to custombuild :)
 
Back
Top