Login Error - Ninja Media Script
Hello.
I have this error when I try to login: https://screenshots.firefox.com/heX6QZZnzJ5LX7kQ/www.huevadas.net
Anyone knows how to solve it?
Thanks!
@iambuxer, can you try the solutions at the bottom of this forum post: https://laravel.io/forum/01-30-2015-laravel5-tokenmismatchexception-in-verifycsrftoken
Looks like these users were having a similar issue.
Keep me posted. Thanks.
It could be a session issue. Since if the CRSF token was not to be stored in the session, it would complain, along once the user is being logged in, the session would not remember the user and have them redirected back to the login without any error showing. A good way to test the session is to make the 2 following routes:
Route::get('logged-in', function () {
return Auth::check() ? 'Logged in!' : 'Not logged in!';
});
Route::get('force-login', function () {
Auth::login(App\User::firstOrFail);
return Auth::check() ? 'Logged in!' : 'Not logged in!';
});
@iambuxer,
If you want to send me over your FTP info here: https://codecanyon.net/user/devdojo I can help you troubleshoot this further :)
Thanks.
Got it! Thanks.
Ok, I'm actually kind of confused. I was able to signup for an account on your site and then I was able to login just fine. I just sent you back a message. If you could send me over the login info you are trying to use that will help me troubleshoot the issue.
What device and browser are you trying to login from? That might help me replicate the issue on my end.