For older PHPs, you have to fiddle with the GC probability settings:
session.gc_probability 1
session.gc_divisor 1
giving a 100% chance of the GC being run on every request. Of course, this would be a major performance hit, so you might want to put those overrides into a conditional block in apache and allow them to be set only for a particular IP or user.
For older PHPs, you have to fiddle with the GC probability settings:
giving a 100% chance of the GC being run on every request. Of course, this would be a major performance hit, so you might want to put those overrides into a conditional block in apache and allow them to be set only for a particular IP or user.
Docs: http://php.net/manual/en/session.configuration.php#ini.session.gc-probability