The session-handling tag has no wiki summary.
0
votes
0answers
17 views
How to use exclusive locks in MySQL?
I'm trying to implement my own version of session handler using MySQL in PHP. My version differs from existing ones (like Zend's) in that mine is namespaced and each namespace is stored and locked ...
2
votes
3answers
65 views
Codeigniter and Multiple Concurrent Logins
I come from a security background where I was an infosec consultant and tested webapps for vulnerabilities. I've just started working as a webdev and I'm busy with my first project, written with ...
0
votes
1answer
64 views
Is it necessary to change session.save_handler when using session_set_save_handler
I'm storing the session data in a database. In class Session are storage functions which are used for storing and retrieving data.
Now my question's are:
Do I need to change the value of ...
0
votes
1answer
68 views
session not storing the data between 2 pages by calling session_set_save_handler
I searched this question through out on here..but i cant to get right answer...So please go through my question & answer me please...thanks is advance..
-------------- Session.php ...
1
vote
3answers
57 views
Session handling problems in PHP
I am trying to validate whether a session exists or not. For that, I tried the following :
make a new session if :
if(session_id() == '')
if(isset($_SESSION))
if(session_status() == ...
-1
votes
1answer
557 views
Using redis as a SESSION handler does not work with phpredis, how to fix?
in my php.ini I have the following entries:
extension=redis.so
session.save_handler = redis
session.save_path = "tcp://10.100.0.80:6379?weight=1"
But, when I do session_start() I get:
PHP ...
1
vote
0answers
82 views
How do I switch between session handlers in run time?
I have DB session handler and I have a FILE session handler and a REDIS session handler
According to some logic in my bootstrap, I would like to choose which between the two session handlers I'll use ...
0
votes
2answers
72 views
Implementing session management
I'm implementing session management and am currently storing 4 types of info in the db:
user_id
session_id (hash)
insertion_time (for timeouts)
persistency (if user
has a persistent cookie)
It is ...
0
votes
2answers
103 views
SessionHandler issue
I have a problem with my SessionHandler class. It inserts an blank session at each refresh, and when you insert something in session, the print_r function doesn't show all available options. What ...
1
vote
2answers
99 views
Handling expired sessions
Alot of my controllers have functions that look like this. What is the best measure to take with CI when a session runs out and a function like such is called?
...
1
vote
1answer
152 views
php session.save_path failover
We have an array of autoscaling web servers on the cloud sharing sessions via a shared Network Attached storage.
We are considering other solutions but in the meantime I am looking for ways to make ...
5
votes
4answers
2k views
DynamoDB for PHP sessions
we are currently using a NAS for PHP session files storage for an array of autoscaling load balanced app servers.
We are interested to replace this with a more robust solution and DynamoDB from ...
0
votes
1answer
704 views
JCR 2.0 how right use session
This guide JCR Wiki proposes the use of a new session for each request. My task is to create a tree of jackrabbit files. So going by this guide to get properties/ nodes of each item, I would need to ...
2
votes
1answer
147 views
iOS: session + changing IP-addresses; how to handle it on the client?
in my iPhone/iPad-app I've got to deal with a server which determines sessions (not only, but also) according to the IP-address. The problem now is that with some providers, the phone's IP address ...
1
vote
1answer
696 views
Cookie handling with Servlet
I am having a problem of setting the data of a (persistent/cross browser session) cookie correctly inside a Servlet and the reading it in a Filter.
the code of the Servlet (running at log-in time) ...
0
votes
2answers
222 views
session_handler unset session Data Field still the same
I Started to same session on DB and works fine to keep an user logged in
longer then the default time from php.ini.
Two things I realized and I could not fix it yet
Garbage Collection is not working ...
5
votes
4answers
1k views
Zend Framework - session id regenerated, can't stay logged in
Awe come on people :( isn't there any one who can help me out here
Hi guys, I'm trying to store sessions in a database using Zend Sessions however for somereason my sessions die out. Im not sure if ...
2
votes
1answer
379 views
Want to store sessions using zend Framework - help
I need to set up a remember me function for users who log into my website so everytime they close the browser they do not need to relogin to the website. I'm using the zend framework here and have ...
4
votes
3answers
4k views
Close session and start a new one
I'm testing the implementation of a security check in my PHP sessions. I can successfuly detect whether the session was started from another IP address and I can successfully start a new session. ...
1
vote
3answers
336 views
ASP.NET Sessions and Concurrency
I have a legacy ASP.NET application in which there are some session/concurrency related issues and inconsistency.
I am looking for the best way to do the re-design/
This is the scenario
A. Multiple ...
4
votes
2answers
1k views
Trouble with Hibernate One Way Associations
I'm trying to implement a Hibernate persistence layer in a Java application and I'm having some trouble with it. I'm encountering a no proxy error every time I attempt to access a simple, one way ...
2
votes
1answer
248 views
Is it possible in Springframework 2.5.6 to have scope=“session” create the object on session create
I've got a project using Jetspeed portal and Springframework 2.5.6 where I need a Jetspeed level service to be unique for each user logged in. This would be best done using Spring AOP and ...