LoginSignup
6
3

More than 3 years have passed since last update.

【laravel】ErrorException file_put_contents(xxxxx): failed to open stream: No such file or directory

Last updated at Posted at 2020-03-04

エラーが発生するまでの過程

php artisan serve 

↑のローカルのサーバーを立ち上げた状態で開発を進めていた。
1. 開発中にプロジェクトディレクトリの名前を変更したいと思いだす。
2. laravel → tutorial に名前を変更。
3. control+c でサーバーを閉じる。
4. もう一度立ち上げる。
5. タイトルのエラーが発生。

原因

ディレクトリの名前を変えたことによって、アプリケーション内に設定されていた、パスが通らなくなった。

解決法

アプリ名/bootstrap/cache/config.php 
にあるパスを再構築することで解決できる。
以下のコマンドで、アプリケーション内のパスが再構築される。

php artisan config:cache
6
3
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
6
3