this is the way I get it working:
1. Extract into an ibay e.g "intranet"
2. Go into the config.inc.php file.
3. Edit the part thats got $cfg['PmaAbsoluteUri']
so that it looks like:
$cfg['PmaAbsoluteUri'] =
http://your ip/intranet/phpMyAdmin
4. FInd your mysql root password (the .my.cnf file in /root has it) . Say its "secret"
the edit lines 73,74,75 so that they look like
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = 'root'; // MySQL user
$cfg['Servers'][$i]['password'] = 'secret'; // MySQL password (only needed
thats it!
Point your broswer to
http://your ip/intranet/phpMyAdmin and your up and running
sam