Question

I have the following code:

try { 
      $db_conn = new PDO('mysql:host='.$host.';dbname=stats;port='.$port, $un, $pw);
    } catch (PDOException $e) {
      WriteLog("Could not connect to database!\nError: ".$e->getMessage());
      exit;
    }

    try { 
      $db_conn2 = new PDO('mysql:host=localhost;dbname=log', $un2, $pw2);
    } catch (PDOException $e) {
      WriteLog("Could not connect to database[2]!\nError: ".$e->getMessage());
      exit;
    }

It connects without errors to the first server (not local), but then it fails to connect to the local server. I get this error message:

Error: SQLSTATE[HY000] [2002] No such file or directory (||)

I'm running PHP v5.4.27

Was it helpful?

Solution

Solved it. Changing from localhost to 127.0.0.1 seems to fix it. I'm not sure why

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top