php5.3.4 is out how do i update it ?

netcoid

New member
Joined
Dec 10, 2010
Messages
4
hello im new to the community and DA, how do we update the php5.4 ? im useing 5.3 by .build update at custombuild.

thanks
adamramadhan
 
You have to wait for it to be added to custombuild.
 
I don't know if you should be that happy to install it.
Did upgrade once on a cpanel server, after that, lots of Oscommerce installations, Joomla and even vBulletin forumsoftware gave numerous errors.
Put it back to 5.2.x version and the evil was gone. I think not everybody is ready for 5.3.x even with 6.x on his way.

There is a version.txt in your custombuild directory, but I don't remember how it's upgraded. However, it will be announced on these forums when php 5.3.x will be in custombuild.
 
Code:
cd /usr/local/directadmin/custombuild
./build update
wget -O php-5.3.4.tar.gz "http://lt.php.net/get/php-5.3.4.tar.gz/from/this/mirror"
perl -pi -e 's/php53:5.3.3:5adf1a537895c2ec933fddd48e78d8a2/php53:5.3.4:b69b36132899c5ca3bf155efa0218676/' versions.txt
./build php n
 
Code:
cd /usr/local/directadmin/custombuild
./build update
wget -O php-5.3.4.tar.gz "http://lt.php.net/get/php-5.3.4.tar.gz/from/this/mirror"
perl -pi -e 's/php53:5.3.3:5adf1a537895c2ec933fddd48e78d8a2/php53:5.3.4:b69b36132899c5ca3bf155efa0218676/' versions.txt
./build php n

what does the "n" in the build php n does ? thanks for the hint. :)
 
Code:
cd /usr/local/directadmin/custombuild
./build update
wget -O php-5.3.4.tar.gz "http://lt.php.net/get/php-5.3.4.tar.gz/from/this/mirror"
perl -pi -e 's/php53:5.3.3:5adf1a537895c2ec933fddd48e78d8a2/php53:5.3.4:b69b36132899c5ca3bf155efa0218676/' versions.txt
./build php n

Alright so I ran this series of commands, and ended up with php 5.2.15 when I had 5.2.14 before. Did I do something wrong?
 
Set php5_ver to 5.3 in the options.conf file. PHP 5.3.4 is included now, so "./build update" and "./build php n" are enough if you have php5_ver=5.3 set.
 
Back
Top