[Phpmyadmin-news] phpMyAdmin 2.11.4 is released

smtalk

Administrator
Staff member
Joined
Aug 22, 2006
Messages
10,628
Location
LT, EU
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.
 
For some reason custombuild doesn't update it for me (yes, options.conf has it enabled)
 
agnivo007, it's still not in the build file, try:
Code:
cd /usr/local/directadmin/custombuild
perl -pi -e 's/2.11.3/2.11.4/' build
./build phpmyadmin
 
From 2.6.4-pl1

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:

Code:
#!/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
 
Updated

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
 
BTW, the phpmyadmin themes are great...anyone tried installing them?

I did and liked a lot. :)
 
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
 
Code:
cd /usr/local/directadmin/scripts
perl -pi -e 's/2.11.3/2.11.4/' phpMyAdmin.sh
./phpMyAdmin.sh

Or:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin
 
Back
Top