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!!
Oh I forgot to mention I replaces Redirect::intended with a Redirect::route and it still happens :/
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community