Laravel Error: Specify a valid cache path

I cloned a Laravel 5.2 project.

When I install the composer, I got an error:

[InvalidArgumentException] Please provide a valid cache path. 

Abstract folders exist:

 storage/app storage/framework storage/logs bootstrap/cache 

and all its 777.

How can I fix this error!

+7
php laravel
source share
1 answer

I fixed it.

Create these folders under the repository / framework:

 sessions views cache 

And also you can use this command to install:

 sudo composer install 

Now it worked!

+27
source share

All Articles