I've just encountered a problem. I store session ids in a cookie to retrieve the basket info when a user leaves a site and then comes back again. My problem being that as a test i cleared all sessions but kept the cookie but now the page just continues to load.

my question is, is there a way to firstly use php to get the tmp directory for me to then test if the session id stored is valid.

regards,

Phil

EDIT

i currently use

if( isset( $_COOKIE[$cookieKey] ) ) {
    session_id( $_COOKIE[$cookieKey] );
}
// create a new or carry on the existing session
session_start();

which is giving me the problem

link|improve this question

47% accept rate
PHP will clean up "stale" sessions every now and then, there is no reason why you should rely on checking for the presence of a particular session. – Salman A Apr 13 '11 at 9:45
Where does $cookieKey come from? Are you by chance trying to share sessions between several users? – Álvaro G. Vicario Apr 13 '11 at 10:13
no, sharing a session over a shared SSL – Phil Jackson Apr 13 '11 at 11:25
How can you share SSL if HTTP is a stateless protocol? – Álvaro G. Vicario Apr 13 '11 at 12:00
feedback

1 Answer

That's unreliable and unnecessary. Instead, add checks in your code to find out whether the $_SESSION superglobal is empty or (even better) has the appropriate keys:

<?php
if( !isset($_SESSION['foo']) ){
    // User is not fooed yet
    $_SESSION['foo'] = 33;
}
find_records_by_foo($_SESSION['foo']);

Update: No matter what you want to do with cookies and session IDs, my answer still applies. Once you're done with your cookie checks, make you session tests with isset().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.