Remember Me functionality not working in Symfony2

前端 未结 10 1346
鱼传尺愫
鱼传尺愫 2020-12-14 21:44

I have implemented remember me functionality in Symfony2. When I log in with remember me box checked, cookie named \"REMEMBERME\" gets created. That cookie is also available

10条回答
  •  旧巷少年郎
    2020-12-14 21:56

    In my case, the authenticators was overided with the method supportsRememberMe:

    public function supportsRememberMe()
    {
        return true; // change it to true
    }
    

提交回复
热议问题