php getaddrinfo failure: “A non-recoverable error occurred during a database lookup.”

前端 未结 2 545
小蘑菇
小蘑菇 2021-01-25 02:40

Would really appreciate your help please :) I keep getting an error on my PDO connect, as such: Warning: PDO::__construct(): php_network_getaddresses: getaddrinfo failed

2条回答
  •  隐瞒了意图╮
    2021-01-25 03:15

    It's likely that the server that hosts your app doesn't know how to resolve "localhost".

    See the hosts file for this.

    You can workaround that by replacing "localhost" with "127.0.0.1"

提交回复
热议问题