Artisan migrate could not find driver

前端 未结 11 832
情话喂你
情话喂你 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 17:53

    if you've installed php and mysql in your linux machine, php needs php-mysql extention to communicate with mysql. so make sure you've also installed this extention using:

    sudo yum install php-mysql in redhat based machines.

    and

    sudo apt-get install php-mysql in debian machines.

提交回复
热议问题