session Questions
1
I am working with a database based session driver at the moment, to allow us to store some persistent data across our application,
we create the session like this:
Auth::loginUsingId($user->i...
11
Solved
We're randomly getting some very strange error logs. They don't happen on every page hit, even with the same parameters/actions/etc, and they don't seem repeatable, each one is different in its cra...
Leticialetisha asked 1/9, 2011 at 15:42
3
Today I noticed something disturbing while inspecting session files in storage/framework/sessions folder created by Laravel 5.
Here is what happened:
I logged in as user A
I navigated to a page...
Capelin asked 9/6, 2015 at 9:53
2
I found sth like this:
"stateful – keep track of the previously stored information which is used for current transaction.
stateless – every transaction is performed as if it were being done for t...
14
UPDATE ON THE PROBLEM:
On some browsers, we have two PHPSESSIDs.
One PHPSESSID is not set by me anywhere in my script
It has HOST (instead of DOMAIN for the PHPSESSID I set) as www.mywebsite.com
...
9
Solved
I created a login page with codeigniter,but i get the php message.
Message: ini_set(): A session is active. You cannot change the session module's ini settings at this time
how to fix this?
vie...
Deron asked 28/9, 2015 at 2:23
2
Solved
Keycloak configuration and data is stored in a relational database, which is usally persisted to the hard disk. This includes data like realm settings, users, group- and role-memberships, auth flow...
Epicycloid asked 4/1, 2022 at 15:53
3
Solved
This might be a silly question with an easy answer, but I cannot seem to find any info on it.
I am creating a webapp for a clients intrant, and I am using session variables, which start as they lo...
11
Solved
I have this big issue. My current session is gone every time I made a new request to Server.
I have checked in a lot of places. I can't find what's the problem. I also have included
session-config...
3
I have got a bit of a problem with laravel's remember me functionality.
Normally, laravel adds a session cookie, an xsrf token and a 3rd cookie with a random hash value. (Pic below)
When I follo...
10
Solved
How do you prevent multiple clients from using the same session ID? I'm asking this because I want to add an extra layer of security to prevent session hijacking on my website. If a hacker somehow ...
5
Solved
I have been looking at solutions for sharing session data between mutliple war files. I came across the following solution http://www.fwd.at/tomcat/sharing-session-data-howto.html
The basic idea o...
10
Solved
I have an app setup where each user belongs to a company, and that company has a subdomain (I am using basecamp style subdomains). The problem that I am facing is that rails is creating multiple co...
Hornstone asked 1/5, 2012 at 19:2
1
This may edge upon a "best practice" type of question, but I'd like to explain my approach, list out my hypotheses and get constructive feedback.
Currently, my setup consists of two serve...
Vestpocket asked 10/8, 2020 at 19:27
12
Solved
I installed phpMyAdmin 4.0.4.1 on my local develop enviroment, I set auth_type to config. Also I provide authentication requirements by this settings:
$cfg['Servers'][$i]['auth_type'] = 'config';
...
Newhall asked 6/8, 2013 at 9:33
14
Solved
What is the artisan command for clearing all session data in Laravel, I'm looking for something like:
$ php artisan session:clear
But apparently, it does not exist. How would I clear it from the c...
Breadthways asked 7/6, 2018 at 2:59
3
Solved
PHP Session related functions have this one: session_module_name. The documentation only says:
session_module_name — Get and/or set the current session module
Nothing about what session modul...
3
Solved
I'm developing an app on localhost using:
Google Chrome 33.0.1750.154 m
XAMPP Version 1.8.3
I've been using these for a while now and today all of a sudden Chrome is not clearing session cookies...
Calk asked 3/4, 2014 at 19:52
10
Solved
How to solve :
Warning: session_start() [function.session-start]: The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and '-,' in ..... on line 3
Warning:...
18
Solved
I need to keep a session alive for 30 minutes and then destroy it.
7
Solved
I'm working on an application that needs to use session id information. My session is stored in cookies. The problem I have is that my session is not immediately available to the controller when a ...
Yep asked 2/2, 2013 at 18:53
3
Solved
I'm developing a Flask server to communicate between some backend Python functionality and Javascript clients over the web. I'm attempting to utilize Flask's session variable to store user specific...
Maxma asked 7/4, 2018 at 22:2
14
I have an ASP.net application that uses a cookie to store the user selected language.
Everything works fine except when I'm on localhost.
Replacing localhost by 127.0.0.1 makes it work again... why...
Barytes asked 8/9, 2011 at 10:54
24
Solved
I recently created a new Laravel project and was following along with the guide on Authentication. When I visit either my login or register route, I get the following error:
ErrorException in Reque...
Toilette asked 24/12, 2015 at 8:42
3
What are the different techniques for Unlocking an oracle table?
What I Tried.
Get the object ID of the locked table:
SELECT object_id FROM dba_objects WHERE object_name='YOUR TABLE NAME';
Get ...
1 Next >
© 2022 - 2025 — McMap. All rights reserved.