0
votes
0answers
18 views

how to reset the field in db when the session ends in php

In my Application,I have user management. In that Only one session can be activated for a given user. A user should not login in more than once in a time. So I set a flag field in db. While a user ...
1
vote
0answers
44 views

SESSION variable reset when changing page [duplicate]

Possible Duplicate: Why session_start is needed when using session? I'm doing my first login-secured site and I want to store a simple boolean in the session superglobal. I know I set it ...
-1
votes
1answer
129 views

Reset php session to 0 on form submission for Rock, paper, scissors

I've tried numerous things to make this functionality work. I've searched all over stackoverflow to see if there was a solution for the particular issue that I'm having and I'm getting no where. I was ...
0
votes
0answers
131 views

struts action form reset

There are two Action forms ActionForm-A (session scope) and ActionForm-B in a JSP file. ActionForm-A has to be reset based on an action on performed on ActionForm-B. What are the ways to do that?
0
votes
2answers
248 views

CodeIgniter destroying my session without

So, my current task involves a site where people can sign in, and view a series of training videos on a particular topic. I developed this within CodeIgniter. The only trouble is that once I have ...
0
votes
1answer
805 views

Magento. How to reset Checkout Quote reserved Id?

Due to an integration with an external system during the checkout I need to reset & provide a new reservedId for the current quote in some situations. I’ve tried several methods, with no success ...
3
votes
1answer
397 views

Why does FileSystemWatcher reset our website sessions?

We have an ASP.NET 2.0 website with an advanced configuration that is not catered for by a standard Web.config. Instead we're storing the config in our own Xml schema in the /bin/ folder, and we have ...
3
votes
1answer
757 views

Change Web.config connectionStrings without resetting sessions

How can <connectionStrings> in Web.config be changed without resetting sessions of logged in users? I'd like to keep using <connectionStrings> instead of creating a custom section because ...
0
votes
2answers
422 views

Session start

In header.php I have: <?php if(!isset($_SESSION)) { session_start(); } ?> and further down I have: $_SESSION[theme] = $_GET[theme]; Basicly there is a drop down box where the user selects ...