2004-11-23
If your web server is running on a port different than 80 or 443, and you have not defined $cfg['PmaAbsoluteUri'],
a small fix is needed.
In libraries/common.lib.php, line 1044
$cfg['PmaAbsoluteUri'] .= $url['port'];
becomes:
$cfg['PmaAbsoluteUri'] .= ':' . $url['port'];