0
votes
1answer
14 views
How long will my current session still last?
How can I figure out when my current session will run out?
Is the session timeout updated on every request?
1
vote
4answers
47 views
How to implement unique hits on articles
Hi, i was wondering what the best way is to implement a hit counter for articles, products, etc. Now if someone visits the page the counter just adds one in the database. If someon …
0
votes
1answer
46 views
Writing crawler that stay logged in with any server
I am writing a crawler. Once after the crawler logs into a website I want to make the crawler to "stay-always-logged-in". How can I do that? Is a client (like browser, crawler etc. …
0
votes
1answer
32 views
difference between using http and https in session management of jsp
When I am using HTTP protocol, there is no issue with sessions. But when I am using HTTPS protocol, I am facing problem in JSP. When it is moving from one tab to another tab, sessi …
1
vote
2answers
19 views
attributeRemoved not being called after session.invalidate
I have a object that implements the HttpSessionAttributeListener, and as you'd expect it does some work when certain objects are added, replaced and removed from the session.
I …
1
vote
5answers
47 views
session expiring and giving error page
My application is throwing an error when the session expires.
I dont want the sessions to expire automatically....
but if there is no way to do that then instead of showing the e …
1
vote
5answers
48 views
Something like viewstate and session
The problem that I am having is as follows:
I currently have a custom class that generates buttons and places them on a placeholder on a master page.
The events for these buttons …
1
vote
4answers
36 views
Manage Session when broswer has disable cookies
Hello All...
I wants to know that How can i Manage Session if the client browser has disabled cookie feature..
If I wants to implement it in simple JSP - Servlet, then how can I …
0
votes
2answers
43 views
PHP losing data for two variables
I have two scripts that I'm working on. The first receives $agentID via GET (as well as some other data via other GET variables), then looks up $firstName and $lastName in a datab …
0
votes
1answer
55 views
Losing session data when user logs in
Hello,
I have been working on a shop that is built in Python on the back of the django framework, everything was working fine until I noticed that when a user proceeds to the che …
0
votes
2answers
41 views
simple xml object
hello i'm trying to save the values of a SimpleXMLElement to a $_SESSION but the values are entered as "SimpleXMLElement Object". code below:
$xml = new SimpleXMLElement($auth_inf …
2
votes
6answers
58 views
Recommended way to let javascript know about php server-side login/logout?
For convenient notification purposes, not secure information purposes:
I have javascript polling for new information while logged in. I want it to stop while logged out. What is …
1
vote
2answers
49 views
Change session ID and keep data?
When a user logs in on our website, I want to change the session ID but keep whatever data is in the session. I want to do this for two reasons:
To prevent a user account to be u …
0
votes
0answers
24 views
Why does Velocity lose session after only a few minutes?
I've set up sesion management with Velocity distributed cache. I have 3 servers hosting the cache and created the named cache with
new-cache Sessions -Secondaries 1 TTL 1440
a …
0
votes
3answers
39 views
session table ?
hi all
How can I send session[table] to database in php ?
like that.
session_start();
session_register('table');
$qty=$_POST[txtQty];
$pid=$_REQUEST[pid];
$data=@mysql_query("S …
