phpmyadmin update available false positive

jca

Verified User
Joined
Oct 31, 2006
Messages
306
Location
Allen, TX
Hi, I'm using custombuild 1.1.15, and I ran the following command:

./build update
./build versions
which shows:
Code:
Latest version of PHP (CLI): 5.2.6
Installed version of PHP (CLI): 5.2.6

Latest version of Apache: 2.2.10
Installed version of Apache: 2.2.10

Latest version of ProFTPD: 1.3.1
Installed version of ProFTPD: 1.3.1

Latest version of PCRE: 7.8
Installed version of PCRE: 7.8

Latest version of curl: 7.19.0
Installed version of curl: 7.19.0

Latest version of FreeType: 2.3.7
Installed version of FreeType: 2.3.7

Latest version of AWstats: 6.8
Installed version of AWstats: 6.8

Latest version of dovecot: 1.1.6
Installed version of dovecot: 1.1.6

Latest version of MySQL: 5.0.67
Installed version of MySQL: 5.0.67

Latest version of Atmail: 1.02
Installed version of Atmail: 1.02

Latest version of RoundCube webmail: 0.1.1
Installed version of RoundCube webmail: 0.1.1

Latest version of phpMyAdmin: 3.0.1.1-all-languages
Installed version of phpMyAdmin: 3.0.1.1

phpMyAdmin update is available.

Latest version of SquirrelMail: 1.4.16
Installed version of SquirrelMail: 1.4.16

If you want to update all the available versions run: ./build update_versions

running then
./build update_versions

and running
./build phpmyadmin
returns:
Code:
phpMyAdmin 3.0.1.1-all-languages installation is done.

I don't know why custombuild still thinks there's an update available.
 
It's a known bug (and it will be fixed soon). Bugfix:

Find:
Code:
PHPMYADMINV=`ls -l ${WWWDIR}/phpMyAdmin | cut -d\> -f2 | cut -d- -f2`
Replace with:
Code:
PHPMYADMINV=`ls -l ${WWWDIR}/phpMyAdmin | cut -d\> -f2 | cut -d- -f2,3,4`
 
Back
Top