
Chris
Staff

Sep 2, 2010, 1:24 PM
Post #6 of 8
(1125 views)
Shortcut
|
Re: [equinox69] Bug found? concerning FTP transfer on v2.06, Re: [chris] Notice: CMSB v2.06 Beta!
[In reply to]
|
|
|
Hello folks, Thanks for the great feedback so far! :) @Djulia: Please make the change as suggested by your host. From what I've read, your host will be doing their own session garbage collection outside of PHP. We're looking into the problem and a permanent fix right now. If changing that 1 to a 0 doesn't help for whatever reason, please just comment out both of the new lines that were added:
ini_set('session.gc_maxlifetime', 60*60*24 ); // session garbage-collection code starts getting randomly called after this many seconds of inactiity //ini_set('session.gc_probability', 1 ); // after gc_maxlifetime is met old session are cleaned up randomly every (gc_probability / gc_divisor) requests //ini_set('session.gc_divisor', 250 ); // after gc_maxlifetime is met old session are cleaned up randomly every (gc_probability / gc_divisor) requests ini_set('session.use_trans_sid', false ); Thanks for reporting this! Expect a proper fix shortly. :) Chris
|