Artisan migrate could not find driver

前端 未结 11 830
情话喂你
情话喂你 2020-11-27 17:33

I am trying to install Laravel. I have installed Xampp, but when I try to setup my database using php artisan migrateI get the error:

11条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 18:18

    Go to .env file and change the following

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=shreemad
    DB_USERNAME=root
    DB_PASSWORD=
    

    Change the DB_PASSWORD field to

    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=shreemad
    DB_USERNAME=root
    DB_PASSWORD=" "
    

    In my case it works

    NOTE: If your password in mysql is null

提交回复
热议问题