lundi 4 janvier 2016

Laravel 5.2 - user is logged in only after successfull login redirect, once I do action user is not more logged in

I am using Laravel 5.2 and Laravel Authentication out of the box. Here is my steps: 1) installing laravel 2) php artisan migrate 3) php artisan make:auth

Everything is ready, at least it should be...

Than I open localhost/project/public

a) Press on Register link, registering new account, if successful it redirects to /home and tell that I am logged in and shows my username. b) But once I am clicked to another link (e.g. Home button which redirects to /), than user is no more logged in. And because I am not logged in I am able to see Login and Register links, but they are redirected to /home as it expected.

And I mentioned that if I comment this line in AuthController (to allow access to login page even if I am logged in)

public function __construct()
{
    //$this->middleware('guest', ['except' => 'logout']);
}

after step b) with this commented line I press Login or Register link and... user is logged in again.. Very strange behavior. Same behavior if I open http://localhost/project/public/home, it says that I am logged in.

Generated code from routes.php file:

Route::group(['middleware' => 'web'], function () {
Route::auth();

Route::get('/home', 'HomeController@index'); });

Does anyone know how to solve this issue?



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/1JTRJCq
via IFTTT

Aucun commentaire:

Enregistrer un commentaire