PHP Coding
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP RelatedPHP Coding

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old July 23rd, 2002, 11:49 AM
mhoward mhoward is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: UK
Posts: 49 mhoward User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
Session Query

I know that I can amend my PHP.ini for a generic timeout for all sessions, but how can I use PHP to put a timeout againts my sessions if there is no activity for a certain amount of time? I am willing to use cookies if easier.

Reply With Quote
  #2  
Old July 23rd, 2002, 04:19 PM
Taoism Taoism is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Winnipeg, MB, Canada
Posts: 81 Taoism User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 30 sec
Reputation Power: 3
RE: Session Query

You can easily use a table in a db and cookies to do this. I'll go over a possible way to implement it below:

1) create a table called session (or whatever) in your db. At minimum it will need to track date/time, and session_id.

2) decide how long you want the session to last.

3) write a function that will delete all rows from the session table that are older than your session timeout value.

4) *always* call the function from number 3 before you do anything with your sessions.

5) in each page where you will want to use sessions, call the function from number 3, and then check to see if a session cookie exists. If the cookie exists, proceed to step 6), otherwise proceed to step 9)

6) select from the session table using the session id stored in the cookie. Make sure you select the timestamp out as part of the select. If the session id exists, the session is still valid and proceed to step 7), if it doesn't proceed to step 10).

7) next, using the timestamp from the session table, compare it to the current time, if it is older than, say 5 mins (you pick a time value), then you delete the row from the database, and reinsert it again. This allows you to keep a session refreshed without deleting on every call if someone is bouncing around pages quickly in your site.

8) write the session cookie back out with the current session id.

9) no cookie existing means no session exists, and so we generate a unique session id and insert that value into the session table with a timestamp and also write a cookie back out.

10) if no entry in the session table exists, the session is invalid or expired (and thus deleted). again we initialize a new session id and insert it with a timestamp into the table and write the session id out as a cookie.

That's a quick overview of one way to do it. There are a few things I glossed over, and really, this model needs to be slightly fleshed out more. For example, what if you can't write out a cookie? Do you deny a session? Probably not. Your best bet is to test to see if you can write a cookie, and if you can't then append the session id to the URL, and so you also have to examine the $_GET scope for session id as well.

HTH!

Cheers,
Keith.

Reply With Quote
  #3  
Old July 23rd, 2002, 04:53 PM
mhoward mhoward is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: UK
Posts: 49 mhoward User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 3
RE: Session Query

Good idea, but I want to avoid using yet another database table if possible.

Thanks anyway

Reply With Quote
  #4  
Old July 23rd, 2002, 11:03 PM
Taoism Taoism is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Winnipeg, MB, Canada
Posts: 81 Taoism User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 30 sec
Reputation Power: 3
RE: Session Query

The prinicple still applies... even if you saved session info in a WDDX packet in a file on the server...

Cheers,
Keith.

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP RelatedPHP Coding > Session Query


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 4 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek