Replies: 8 comments 5 replies
-
It's likely a server configuration issue. Have you used Livewire on the server before? |
Beta Was this translation helpful? Give feedback.
-
I was encountering this too and made it stop by:
Not really recommending it as a course of action but try it and if it helps, it should be a clue for someone to figure out what is actually going wrong. |
Beta Was this translation helpful? Give feedback.
-
Anyone solved this? |
Beta Was this translation helpful? Give feedback.
-
What was wrong with mine, is that since I was using a custom, already existing Users table , I was able to solve it by implementing the getAuthPassword() method to use my password field instead of the "password" field. Other thing is that password hash should be the bcrypted version of my already existing password table in my application. /**
|
Beta Was this translation helpful? Give feedback.
-
If you are using multi-tenancy like me, it may be an issue with your canAccessPanel() and/or canAccessTenant() like I had in my case. Fix for me was to hijack the redirect loop and logout the currently authenticated user, like this:
|
Beta Was this translation helpful? Give feedback.
-
Got the same problem. I login and it can generate the session(tried both |
Beta Was this translation helpful? Give feedback.
-
If disabling the Livewire::setUpdateRoute(function ($handle) {
return Route::post('/livewire/update', $handle)->middleware([
EncryptCookies::class,
]);
}); |
Beta Was this translation helpful? Give feedback.
-
I had the same problem, but the solution was very case-specific. I was using Had to change the datatype of |
Beta Was this translation helpful? Give feedback.
-
i have just installed a fresh laravel project and installed filament package, there are no console errors and authentication is working fine,
but after a successful login the page just redirects to login again ,Does anybody have any idea how to diagnose the issue?
Beta Was this translation helpful? Give feedback.
All reactions