hello,
I made a script which handles the session's operations. One of them was the session's garbage collector. the implicit gc has the probability to start = 1/100
In my customized session-handler I changed this value to 100/100. the script works, it deletes the old datas every time.
If I handle sessions with the implicit garbage collector from PHP, it doesn't want to delete anything.
I changed the configuration file setting to:
session.gc_probability 100
session.gc_divisor 100
if I start a script which calls session_start(), it won't delete the old session datas (from a week ago...)
Have you any ideea how to make the implicit gc to work??