Hello Tristan,

Tuesday, January 13, 2004, 3:59:05 PM, you wrote:

TPrsc> I've just asked my host to set my session time limit to 30 days... From 0
TPrsc> I'm now running into problems, and I think that destroying all session
TPrsc> data sill help...

TPrsc> Until I get this sorted, can I kill everyones stored session data?

You could just do:

$_SESSION = array();
session_destroy();

This will erase any session data held for that user (both in memory
and in the tmp directory) - then create a new session for them.

Failing that you could ask your host to erase all of the session tmp
files from the session_tmp directory.

-- 
Best regards,
 Richard                            mailto:[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to