Laravel Lumen Memcached not found

后端 未结 12 1727
無奈伤痛
無奈伤痛 2021-01-31 01:55

Ok, I just started with Lumen and I\'m trying to use the Auth, but a call to either Auth::check or any other function of Auth.. leads to the below Error Fatal error: Cla

12条回答
  •  时光说笑
    2021-01-31 02:44

    I spent 3 hours on this problem today. With the help of the post of demve in this topic, I found the solution. Very simple! I hope it won't affect me later in my development.

    Just to it, in the .env file :

    CACHE_DRIVER=array
    SESSION_DRIVER=array
    QUEUE_DRIVER=array
    

    Ok, I make an UPDATE because I was faced with a new problem about the session. In fact, when you set the previous parameters, your session won't be persistent, like said in the documentation: array - sessions will be stored in a simple PHP array and will not be persisted across requests.

    So I have to change it, always in .env a file like that :

    SESSION_DRIVER=cookie
    

    With a var_dump(Session::all()); I now can see the whole values of my session

提交回复
热议问题