Remote Database

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Luca

    #1

    Remote Database

    I'have Easy PHP in localhost and i need connect php page (local) to remote
    database:

    $db_host = "62.149.225.23" ;
    $db_user = "gfo";
    $db_password = "gfo";
    $db_name = "gfonline";
    $db = mysql_connect($ db_host, $db_user, $db_password);

    The browser show this message:

    Warning: mysql_connect() : Can't connect to MySQL server on '62.149.225.23'
    (10061) in e:\php\gfonline .it\provaremoto .php on line 7

    Bye
    Luca


  • Alvaro G. Vicario

    #2
    Re: Remote Database

    *** Luca escribió/wrote (Fri, 7 Jul 2006 19:26:04 +0200):
    $db_host = "62.149.225.23" ;
    $db_user = "gfo";
    $db_password = "gfo";
    $db_name = "gfonline";
    $db = mysql_connect($ db_host, $db_user, $db_password);
    >
    The browser show this message:
    >
    Warning: mysql_connect() : Can't connect to MySQL server on '62.149.225.23'
    (10061) in e:\php\gfonline .it\provaremoto .php on line 7
    Does mysql_error() provide further info?


    --
    -+ http://alvaro.es - Álvaro G. Vicario - Burgos, Spain
    ++ Mi sitio sobre programación web: http://bits.demogracia.com
    +- Mi web de humor con rayos UVA: http://www.demogracia.com
    --

    Comment

    • David Haynes

      #3
      Re: Remote Database

      Luca wrote:
      I'have Easy PHP in localhost and i need connect php page (local) to remote
      database:
      >
      $db_host = "62.149.225.23" ;
      $db_user = "gfo";
      $db_password = "gfo";
      $db_name = "gfonline";
      $db = mysql_connect($ db_host, $db_user, $db_password);
      >
      The browser show this message:
      >
      Warning: mysql_connect() : Can't connect to MySQL server on '62.149.225.23'
      (10061) in e:\php\gfonline .it\provaremoto .php on line 7
      >
      Bye
      Luca
      Can you connect using the mysql command line?
      If not, check for firewall ports and remote db server running.

      -david-

      Comment

      • Jerry Stuckle

        #4
        Re: Remote Database

        Luca wrote:
        I'have Easy PHP in localhost and i need connect php page (local) to remote
        database:
        >
        $db_host = "62.149.225.23" ;
        $db_user = "gfo";
        $db_password = "gfo";
        $db_name = "gfonline";
        $db = mysql_connect($ db_host, $db_user, $db_password);
        >
        The browser show this message:
        >
        Warning: mysql_connect() : Can't connect to MySQL server on '62.149.225.23'
        (10061) in e:\php\gfonline .it\provaremoto .php on line 7
        >
        Bye
        Luca
        >
        >
        Sounds like the db server isn't listening on the default port, or a
        firewall is blocking your access.

        --
        =============== ===
        Remove the "x" from my email address
        Jerry Stuckle
        JDS Computer Training Corp.
        jstucklex@attgl obal.net
        =============== ===

        Comment

        Working...