Hey all,
I've been trying to track down an answer to this for a couple of days now without success. I'm hoping someone here can point me in the right direction.
I have a website hosted by netINS.net which has MySQL but no database admin interface. So, I checked with them to make sure it was okay if I installed phpMyAdmin...no problem, they said.
So I unzipped the package (ver. 2.9.1.1) and ftp'ed everything up to my website under phpMyAdmin. After some tweaking of the config.inc.php file, I was able to connect to their MySQL server (ver. 4.0.27-standard) .
However, in the left bar where it should show the database I know I have (db1_mydomain_com) it says "No databases" . So, I try to recreate the database that should already exist and I get the error that states "Database already exists" - no kidding .
So, obviously, phpMyAdmin can figure out that the database exists, so why can't it display in the left column? Any thoughts? I'd like to be able to select the database and view/edit it! How do I get my database(s) to show up in the left column??????
I contacted my hosting company to ask them and they said
Not helpful.
Any help would be greatly appreciated!
P.S. Here's my config.inc.php file:
I've been trying to track down an answer to this for a couple of days now without success. I'm hoping someone here can point me in the right direction.
I have a website hosted by netINS.net which has MySQL but no database admin interface. So, I checked with them to make sure it was okay if I installed phpMyAdmin...no problem, they said.
So I unzipped the package (ver. 2.9.1.1) and ftp'ed everything up to my website under phpMyAdmin. After some tweaking of the config.inc.php file, I was able to connect to their MySQL server (ver. 4.0.27-standard) .
However, in the left bar where it should show the database I know I have (db1_mydomain_com) it says "No databases" . So, I try to recreate the database that should already exist and I get the error that states "Database already exists" - no kidding .
So, obviously, phpMyAdmin can figure out that the database exists, so why can't it display in the left column? Any thoughts? I'd like to be able to select the database and view/edit it! How do I get my database(s) to show up in the left column??????
I contacted my hosting company to ask them and they said
We cannot find an issue on the server side at this moment, and were able to connect to the mysql database using the command line.
Not helpful.
Any help would be greatly appreciated!
P.S. Here's my config.inc.php file:
Code:
<?php
$cfg['blowfish_secret'] = 'my_super_secret_string';
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'mysql.myhostedserver.com';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['PmaAbsoluteUri'] = '[URL unfurl="true"]http://www.mydomain.com/phpMyAdmin/';[/URL]
/*
* End of servers configuration
*/
/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '/tmp/';
$cfg['SaveDir'] = '/tmp/';
?>