Laravel: PDOException: could not find driver

前端 未结 21 2473
野趣味
野趣味 2020-11-27 05:06

I am developing a website on a server I only have access to MySQL and FTP, so all commands I run are through the b374k php shell . I am experiencing a Laravel problem with S

21条回答
  •  情话喂你
    2020-11-27 05:50

    Your database driver is missing. To solve the probelm

    First install the driver

    For ubuntu: For mysql database.

    sudo apt-get install php5.6-mysql/php7.2-mysql
    

    You also can search for other database systems.

    You also can search for the driver:

    sudo apt-cache search drivername
    

    Then Run the cmd php artisan migrate

提交回复
热议问题