Error deploy in heroku with a laravel app

0

I'm doing an app in Laravel, it works perfect for me on the host site, but when I deploy heroku I get this error:

In Compiler.php line 36:
 Please provide a valid caché Path

I have read and therefore this error says it happens when the directories are not found:

Storage\
      Framework\
             Cache
             Sessions
             Testing
             View

In my project if they are, I have tried everything, doing php aritsan update, install and others without success, I tried to delete the directories and recreate them and nothing works. Any suggestions please.

    
asked by DVertel 12.07.2018 в 19:26
source

1 answer

0

Your problem is the routes, which in windows are case insensitive, but in UNIX (ubuntu for example), so your routes should be lowercase completely.

framework\
             cache
             sessions
             view
    
answered by 13.07.2018 в 09:03