A session refers to all the requests that a single client makes to a server. A session is specific to the user and for each user a new session is created to track all the request from that user.
0
votes
0answers
7 views
Add two price for same item at codeigniter
i want to add two price for same item in codeigniter. But there is available for add only one price at codeigniter cart function. i need to insert INR price and USD price separate. how can i do this ? ...
0
votes
2answers
12 views
How to use session in domain class in grails
I want to store loggedInUser in a table. So i am accessing loggedInUser using session.But i am getting error like no such property session for this class. How to use session in domain?
class ...
-1
votes
2answers
11 views
redirect page on session timeout in java
I need to redirect the Page to the index page on session timeout. My sessionDestroyed Method is like this;
@Override
public void sessionDestroyed(HttpSessionEvent se) {
HttpSession sess ...
0
votes
1answer
11 views
Using session in flask app
I'm sure there is something that I'm clearly not understanding about session in Flask but I want to save an ID between requests. I haven't been able to get session to work so I tried a simple Flask ...
0
votes
0answers
14 views
Intergrating Paypal into my shopping cart
I have developed my own shopping cart and now I want to integrate Paypal once the user click the checkout button.
I need to pass the item details over to Paypal based on what the customer has added ...
0
votes
1answer
35 views
retrieving session via cross domain ajax
Background:
I'm developing a website tracker using javascript. Here's how it works:
1) A user visits any domain the tracker script is on "anydomain.com". The script makes a successful ajax call in ...
1
vote
1answer
22 views
Get session data in AJAX loaded page
On my website I start a session at the top of the page. Later in the page I have included the navigation bar, this is the complete file (nav.php):
<div class="inner">
<ul id="nav" ...
0
votes
0answers
5 views
how to list open sessions on a java app using acegi and spring mvc?
On my web app, I need to manage user sessions by listing open sessions, kicking one user (close the user's session), kicking all users, etc.
The app uses Spring MVC and acegi. At this moment, ...
-2
votes
0answers
35 views
Session in PHP is not working
I am adding a session that allows value remains in the input box even though i refresh the page.
something wrong with my code, when i refreshing the page using this code, page says "NO DATA ...
-1
votes
1answer
12 views
VS2012 MVC - why my session was fixed whenever I build the project for debug
I am using VS2012 to make ASP.NET MVC4
However, I found my localhost:xxx (after Debugging and the website popped-up) always keep in a fixed session. For example, I login at a dummy account : 123, then ...
0
votes
0answers
21 views
Symfony 2 automatically rewrite session
Very strange way to overwrite another user's session. I go by the same user, after following the links on the site - the user is changed to another.
security.yml
jms_security_extra:
...
0
votes
1answer
31 views
PHP SESSION is created but no data is present in it
Login.php
$login=Pbkdf2::login($password, $hashpwd, $salt);
if($login)
{
session_start();
$_SESSION['bbzalinusrnmenstr'] =base64_encode($username);
$_SESSION['actualname'] =base64_encode($name);
...
0
votes
1answer
26 views
Delete from database if there is Session timeout java
I need to be able to logout my users automatically when there is a session timeout by deleting their record in table where user details are entered every time he/she logs in and deleted during logout. ...
-1
votes
1answer
36 views
Updating a MySQL table every couple of seconds with large amounts of data? [on hold]
I've create an application that has an autosave feature. So instead of the user having to click a save button, their settings are automatically saved with every interaction with app. Behind the ...
2
votes
1answer
23 views
Trigger client side event when session in lost
Up until now, the Stack Overflow community saved my life and job several times. I'd first like to thank you for taking of your time to help.
As some of you probably know, Facebook is using this kind ...