Disable automatic session id regeneration because ajax requests cause it to bomb.

This commit is contained in:
Bharat Mediratta
2009-04-23 00:49:35 +00:00
parent 933770cf0e
commit 6b4fa9105f

View File

@@ -58,7 +58,7 @@ $config['expiration'] = 604800; // 7 days
* Number of page loads before the session id is regenerated.
* A value of 0 will disable automatic session id regeneration.
*/
$config['regenerate'] = 100;
$config['regenerate'] = 0;
/**
* Percentage probability that the gc (garbage collection) routine is started.