im building an application with laravel 4.2
Id like to know how laravel remove sessions records on DB after Auth::logout() call...
Its still there in my table.. with an empty payload but still there
thanks for reply
Related
I have 3 apps and those 2 are laravel apps and 1 is vuejs
I've tried setting up session to store session data in to the database so that I can have a shared sessions between my apps.
Things work between laravel apps, however, I have trouble when it comes to my vuejs app.
Btw, in order to proceed to any of my vue routes, I have to check first if token exists and is correct.
But since I am using laravel sessions now, I guess I need to check for cookie session id now?
and if so, where do I set the cookie session id?
Better use Laravel passport (OAuth) as a token generation for you Vue application.
How can I regenerate session ids in Laravel 5.2 and change session id on every request and deleting old session ids?
I have one issue regarding session of laravel 5.1. I have written a code which will give 2 ajax call simultaneously. In first ajax call i am retrieving data and inserting paramertes into session. And in the response of first ajax, i am giving second ajax call to only update the session for second ajax parameters. But i am facing problem for session is that, it sometimes updates session and sometime fail to update the session. I am storing these parameters into session because on page reload, i am using these parameters again. Any help will be appreciated. Thanks
I am using DB table to store session. Whenever I access any page in website, expire value in session table is getting updated.
I store a value in the session using the following api:
Yii::$app->session->set("key", $value);
After I use this command, session expire is not updating in database.
Another problem is that the stored value in session is only accessible during the same request.
Next request that value is not there in the session.
I google'd and tried all my luck but not able to figure why this is happening.
Thanks in advance
I'm new in PHP and Codeigniter, by the way how to update database table when session in CI is expired and where I can put the code? I use uniqid in database, it's called token. here is my login tableusername, password, level, token, last_login, exp_time. and I want to change value token=null when session in Codeigniter is expired.
I think you're approaching this the wrong way. Sessions can expire passively, so your user DB would not be up to date.
You could use Codeigniter's option to store session data in your MySQL database and check against those entries.