Laravel authentication with remember me error

1k Views Asked by At

I use auth()->attempt() with remember me parameters.

if (auth()->attempt($credentials, $rememberMe)) {

When remember me is false, I can login normally,
but when remember me is true, I got an error.

RuntimeException
Cookie jar has not been set. 

I tried to set .env from SESSION_DRIVER=file to SESSION_DRIVER=cookie

but still didn't work.

I'm using Laravel 7.24 and PHP 7.4.11

3

There are 3 best solutions below

0
On

I fixed this problem for myself by putting 'driver' => 'session' under guards array in config/auth.php. But I was using different guard for admin panel authentication, so it might just be that you have this misconfigured as well.

0
On

I got the same error in my case when I used a custom guard. Calling setCookieJar, setDispatcher and setRequest on my guard solved the problem. Look at this example

2
On

In my case I was using a custom Auth Guard that extended the built in SessionGuard. I had to set the cookie jar myself with

$this->setCookieJar(app('cookie'));

YMMV.