The link of reclam from example above, it's not my, it's hoster's )))))
.htaccess php_value
Collapse
X
-
Originally posted by PoV@rEsK View PostGumSlone, your first example is works, and as i found out it will work too:
* * * .htaccess * * *
php_value session.use_cookies 0
php_value session.gc_maxlifetime 20
php_value session.gc_probability 1
php_value session.gc_divisor 1
php_value session.name SID
* * * * * * * * *
But there is one thing that i can't understand. See below...
* * * Demo * * *
hmm dont know why.
This is what i got from php.net site:
session.gc_probability integer
session.gc_probability in conjunction with session.gc_divisor is used to manage probability that the gc (garbage collection) routine is started. Defaults to 1. See session.gc_divisor for details.
session.gc_divisor integer
session.gc_divisor coupled with session.gc_probability defines the probability that the gc (garbage collection) process is started on every session initialization. The probability is calculated by using gc_probability/gc_divisor, e.g. 1/100 means there is a 1% chance that the GC process starts on each request. session.gc_divisor defaults to 100.
Comment
-
Guest
Comment