Thread: Session help
View Single Post
Old 12-12-2012, 10:28 PM   PM User | #2
tangoforce
Senior Coder

 
tangoforce's Avatar
 
Join Date: Feb 2011
Location: Your Monitor
Posts: 3,496
Thanks: 44
Thanked 439 Times in 428 Posts
tangoforce will become famous soon enoughtangoforce will become famous soon enough
Quote:
Originally Posted by KimLefevre View Post
About the coin system, my first problem is that I want to avoid users to abuse the system, so I want a 30 minutes timeout for the session.
There isn't really a 'good' way to achieve that. PHP handles sessions differently on different systems. On some systems it will automatically close the session after 24 minutes (might be 22 actually..I can never remember the exact details ). The only thing you could do is to have a cron run every minute and scan each session file to see when it was opened but thats rather advanced and depends on all sorts of operating system permissions etc.

Quote:
Originally Posted by KimLefevre View Post
Secondly, how do I determine how long the session has been active in PHP?
Thank you!
Thats the easy part. Simply record the login time in the session:
$_SESSION['login_time'] = time();

Then you know how long ago they logged in.

The downside is you still don't really know when they've stopped viewing the site because PHP is reactive. The only thing you could really do is to see if there is more than 30 minutes since their last usage and if there is don't award any coins. If it's less than 30 minutes then award coins but again you're still up against the php automatic termination of sessions problem so I would suggest going for a 5 or 10 minute time instead
__________________
Please wrap your code in [php] tags. It is a sticky topic and it HELPS us to HELP YOU!
TIP: Coding styles and $end errors :::::::::: TIP: Warning: Cannot modify header information - headers already sent :::::::::: TIP: Quotes / Parse error: syntax error, unexpected T_..
PHP Code:
//Please don't use this for your form processing:
if (isset($_POST['submit']))
//Internet explorer has a bug and does not always send the submit value. 
Explanation: The IE if(isset($_POST['submit'])) bug explained.
tangoforce is offline   Reply With Quote