View Single Post
  #5 (permalink)  
Old 06-28-2008, 07:30 AM
activeco activeco is offline
WebProWorld Veteran
 
Join Date: Jul 2004
Posts: 913
activeco RepRank 2
Default Re: MySQL connect error to an outside database

It could be privileges issue where your new host is not allowed to access db.
If you didn't do it already try issuing command from mysql client, logged as admin:
GRANT SELECT ON mydb.* TO 'someuser'@'%' IDENTIFIED BY 'some_pass';

If you don't use linux, there are windows mysql clients too.

If they really don't allow access to external database, you can move the db files to your server or change the host.
__________________
Impossible? You just underestimate the time.
Reply With Quote