Neo, now I know why you have your custom user title.
phpMyAdmin Installation
Go to
http://www.phpwizard.net/projects/phpMyAdmin/ and download phpMyAdmin.
Unzip/untar all the files and directories, then open the Config.inc.php file and edit the following lines:
$cfgPmaAbsoluteUri= '';
$cfgServers[1]['host'] = 'localhost';
$cfgServers[1]['user'] = 'root';
$cfgServers[1]['password'] =''
Changing them to:
$cfgPmaAbsoluteUri= 'http://www.yourdomain.com/pma/';
$cfgServers[1]['host'] = 'MySQL.yourdomain.com';
$cfgServers[1]['user'] = 'yourusername';
$cfgServers[1]['password'] ='yourpassword'
Create a new directory in your "www" directory titled something like "pma" (same as the directory named above by $cfgPmaAbsoluteUri).
Upload ALL of the phpMyAdmin files to this directory.
Open a web browser, and go to
http://www.yourdomain.tld/pma/index.php (or whatever directory phpMyAdmin is in) and you should see the welcome page and be able to start configuring your databases!
VERY IMPORTANT: Make sure you password protect your phpMyAdmin directory using .htaccess and .htpasswd files.
More info here:
http://www.phpwizard.net/projects/phpMyAdmin/
http://www.aota.net/PHP_and_MySQL/phpmyadmin.php4
http://help.powweb.com/tutorials/mys...in/install.php