1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

php artisan migrateでcould not find driverエラー

Posted at

エラーの内容

laravelでマイグレーションしようとしたところ、以下のようなエラーが出てうまくいかずでした。windows、xampp環境。
image.png

解決方法

「extension=php_pdo_mysql.dll」をphp.iniファイルに加筆して解決しました。

ポイントは、どのphp.iniファイルに!?です!
最初、xampp内のphp.iniを編集してもうんともすんとも言わず、う~んと困った(擬音が多い)のですが、調べたところどうやら別の場所にもともとインストールしてあった別のphpのiniファイルが参照されていたようで、そっちに上記を追記したらうまくいきました。

どこのiniファイルがロードされているかは、

php -i | find /i "Configuration File"

でお調べください。

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?