First off the reason I am doing this is since I'm using shared hosting with HostGator they do not keep the phpmyadmin install up to date. Matter of face at the time of this post phpmyadmin reports -> "Version information: 3.5.5, latest stable version: 4.1.14" So it's lacking in a lot of bug fixes and improvements.
I went and got the latest and greatest version of phpmyadmin and installed it on my hosting. I followed HostGators instructions on whitelisting my IP as this is how they get around giving the database(s) remote access. I also opened port 3306 on my firewall.
When I connect is so slow! Getting the table structures I can go get coffee and it'll be just coming up.
$cfg['Servers'][$i]['verbose'] = 'HG FTSC';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '**********_mgmt';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['only_db'] = array('**********_ftsc');
$cfg['Servers'][$i]['AllowRoot'] = false;
It shouldn't be slow if I'm doing this right on the actual server. But it is!
I appreciate the help!
- Dave