Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a mysql Database on one computer -

This computer has no web server software on it except mysql. I have set up the mysql my.cnf file according to info on the net. I have my firewall turned off so the 3306 port should be open.

On a remote server I host some website. I want to access the database on the first computer through php. The code looks like this.

<?php 
    $host = 'xxx.xxx.x.xx';
    $name = 'xxx';
    $pass = 'xxxx';
    $connection = mysql_connect($host,$name,$pass) or die ("Unable to connect!");
?>

However when I run this I get a time out error stating that "Lost connection to MySQL server at 'reading initial communication packet', system error: 110"

Could someone give me a hand in setting this up so that I am able to access the mysql on my home computer remotely from my hosting server. thanks.

share|improve this question
Is mysql listening for connections on all interfaces or just localhost? Check in your my.cnf – blockhead May 20 '12 at 15:43
Please stop writing new code with the ancient mysql_* functions. They are no longer maintained and community has begun the deprecation process . Instead you should learn about prepared statements and use either PDO or MySQLi. If you cannot decide, this article will help to choose. If you care to learn, here is a quite good PDO-related tutorial. – tereško May 20 '12 at 18:36
could you elaborate on what I would need to change for that. I copied the my-large.cnf file to /etc/my.cnf -- but I was uncertain as what needs to be changed within that file to connect with anything other than localhost – user1191187 May 20 '12 at 18:38

closed as off topic by casperOne May 22 '12 at 15:33

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

It might be that your website provider does not allow connections to remote databases?

share|improve this answer

it's hard to say whats wrong here without seeing an error-message. please change your code to use mysql_error:

... or die mysql_errno() . ": " . mysql_error();

this will give you much more detailed information so you should be able to find the problem on your own - if not, just get back and provide additional information about the erroro to your question.

share|improve this answer
i don't get any errors all that is returned after "lost connection" is 0: – user1191187 May 20 '12 at 18:47

Not the answer you're looking for? Browse other questions tagged or ask your own question.