View Full Version : [Phpmyadmin-news] phpMyAdmin 2.11.4 is released
smtalk
01-12-2008, 05:52 AM
phpMyAdmin 2.11.4 is now released!
Welcome to phpMyAdmin 2.11.4, a bugfix-only version.
The release notes and download info are available on
http://www.phpmyadmin.net.
Marc Delisle, for the team.
You will be able to update it using phpmyadmin.sh script and CustomBuild soon.
agnivo007
01-12-2008, 05:57 AM
Hmm...so frequent releases...
erohas
01-13-2008, 05:05 AM
thanks
updated
mattb
01-13-2008, 05:35 AM
updated. A breeze. :D
agnivo007
01-13-2008, 05:41 AM
For some reason custombuild doesn't update it for me (yes, options.conf has it enabled)
smtalk
01-13-2008, 05:43 AM
agnivo007, it's still not in the build file, try:
cd /usr/local/directadmin/custombuild
perl -pi -e 's/2.11.3/2.11.4/' build
./build phpmyadmin
jjtar
01-16-2008, 10:15 AM
Can anyone tell me how to update from version 2.6.4-pl1 ? ... (sorry for this)
My phpMyAdmin.sh at usr/local/directadmin/scripts is as follows:
#!/bin/sh
#run this script AFTER the administrator account has been created
VER=2.6.4-pl1
PMAFILE=/usr/local/directadmin/scripts/packages/phpMyAdmin-${VER}.tar.gz
PMADIR=/var/www/html/phpMyAdmin-${VER}
WEBFILE=http://files.directadmin.com/services/9.0/phpMyAdmin-${VER}.tar.gz
if [ ! -e ${PMAFILE} ]; then
wget -O $PMAFILE $WEBFILE
fi
if [ ! -e ${PMAFILE} ]
then
PMAFILE=/usr/local/directadmin/scripts/packages/phpMyAdmin-2.5.4-php.tar.gz
PMADIR=/var/www/html/phpMyAdmin-2.5.4
if [ ! -e ${PMAFILE} ]; then
echo "The phpMyAdmin package cannot be found. Please ensure that the paths are correct";
exit 0;
fi
fi
tar xzf ${PMAFILE} -C /var/www/html;
cp -f /usr/local/directadmin/data/templates/config.inc.php ${PMADIR}
rm -f /var/www/html/phpMyAdmin >/dev/null 2>&1
ln -s phpMyAdmin-${VER} /var/www/html/phpMyAdmin
OS=`uname`;
chown -f -R root ${PMADIR};
if [ "$OS" = "FreeBSD" ]; then
chgrp -f -R wheel ${PMADIR};
else
chgrp -f -R root ${PMADIR};
fi
chmod -f 755 ${PMADIR};
exit 0;
Thanks in advance,
JJ
jjtar
01-17-2008, 10:16 AM
Just to tell anyone who can be interested, that I have updated correctly. I just modified the phpMyAdmin.sh, to link with the Sourceforgue download, and removed the $i++ Servers from the config.inc at templates. Now, everything seems to be ok.
Jjtar
agnivo007
01-18-2008, 08:22 AM
BTW, the phpmyadmin themes are great...anyone tried installing them?
I did and liked a lot. :)
seachen
01-29-2008, 11:53 AM
currently i m using 2.11.3 version.
may i know how to upgrade to 2.11.4 version from SSH ?
can somebody show me the guide.
thank you
smtalk
01-29-2008, 12:33 PM
cd /usr/local/directadmin/scripts
perl -pi -e 's/2.11.3/2.11.4/' phpMyAdmin.sh
./phpMyAdmin.sh
Or:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin
Powered by vBulletin™ Version 4.0.4 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.