Please provide a valid cache path

1

I just made a git clone (copy) of a Laravel application just made in the company where I work.

I circled composer update and artisan key generate to make the initial settings, as well as edited the .env file to configure the database.

Everything is perfectly set up, however an Exception appears when running the application:

  

Please provide a valid cache path

Does anyone know how to solve this?

    
asked by anonymous 12.12.2016 / 11:51

1 answer

1

As said in this answer , try creating the directories in storage / framework :

  • sessions
  • views
  • cache

Maybe they're missing.

This , it adds that you can execute the command :

composer install
    
12.12.2016 / 11:57