PDOException: SQLSTATE[HY000] [2002] No such file or directory

前端 未结 10 2152
太阳男子
太阳男子 2020-12-05 11:19

I have put PushChatServer dir in htdocs folder and create database puschat try to run @\"http://localhost/PushChatServer/api/test/database.php\"

Then I got following

10条回答
  •  心在旅途
    2020-12-05 11:45

    You need to change host from localhost to 127.0.0.1

    Laravel 4: In your app/config/database.php try changing host from localhost to 127.0.0.1

    Laravel 5: In the .env file, change DB_HOST from localhost to 127.0.0.1

    Source: PDOException SQLSTATE[HY000] [2002] No such file or directory

提交回复
热议问题