Replies: 9 comments 7 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 ran into the exact same problem. I have both admin and professor panels. I think Filament is a bit prone to this kind of error because it essentially runs within the root of the Laravel app. In my case, the issue was in a widget where I accidentally typed: getUrl(panel: 'panel ') Notice the extra space at the end it was wrong. This little typo almost cost me a whole day of debugging 😅. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
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