Support the ongoing development of Laravel.io →
Authentication Security Session

Hi I have a very strange issue. I have recently been trying to add an ssl cert to my site, and when doing so I get some weird issues logging in. Everything works fine without ssl.

Basically after submitting the login form the user receives a 404 error instead of being redirected to the site dashboard. Like I sad this works fine on an insecure connection.

The code in my authentication controller is as follows:

$username = Input::get('username');
$password = Input::get('password');

if (Auth::attempt(array('username' => $username, 'password' => $password)))
{
    return Redirect::intended('dashboard')->with('success', 'Welcome Back!');
}
    else
{
    return Redirect::route('users.signup')->with('errorMessage', 'Incorrect username or password!');
}

If anyone has any ideas I would greatly appreciate it. Been banging my head against a wall for hours now!!

Last updated 2 years ago.
0

Oh I forgot to mention I replaces Redirect::intended with a Redirect::route and it still happens :/

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

zefman zefman Joined 30 Dec 2013

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.