1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Problem come from Laravel 9.x Description: Latest working using Laravel version 9.3.1 with jetsream got bug in laravel/jetstream, then it fixed by 50b46db and bump laravel version to 9.4.0, but then it produces another issue, if user login with "remember me", and leave tab open for a few hours and open again then will get error Method Illuminate\Auth\RequestGuard::getRecallerName does not exist. How to fix it? go to laravel/framework src/Illuminate/Session/Middleware/AuthenticateSession.php And update line44: $passwordHash = explode('|', $request->cookies->get($this->auth->getRecallerName()))[2] ?? null; Then change to $passwordHash = explode('|', $request->cookies->get($this->guard()->getRecallerName()))[2] ?? null; Done |