[Pkg-drupal-commits] r1937 - in /branches/drupal-5.0/debian: changelog etc/settings.php

luigi at users.alioth.debian.org luigi at users.alioth.debian.org
Tue Oct 14 14:15:55 UTC 2008


Author: luigi
Date: Tue Oct 14 14:15:55 2008
New Revision: 1937

URL: http://svn.debian.org/wsvn/pkg-drupal/?sc=1&rev=1937
Log:
Added exception to Debian PHP session customization allowing for session table rows aging and removal (Closes: #495027)

Modified:
    branches/drupal-5.0/debian/changelog
    branches/drupal-5.0/debian/etc/settings.php

Modified: branches/drupal-5.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal-5.0/debian/changelog?rev=1937&op=diff
==============================================================================
--- branches/drupal-5.0/debian/changelog (original)
+++ branches/drupal-5.0/debian/changelog Tue Oct 14 14:15:55 2008
@@ -17,6 +17,11 @@
   * debian/patches/11-SA-2008-060
     - Added upstream patch fixing several security vulnerabilities
       (Ref: SA-2008-060, CVE-TBA) (Closes: #501635)
+
+  * debian/etc/settings.php
+    - Added exception to Debian PHP session customization allowing for
+      session table rows aging and removal, thanks to Kamthorn Krairaksa
+      and  Theppitak Karoonboonyanan. (Closes: #495027)
 
  -- Luigi Gangitano <luigi at debian.org>  Fri,  8 Oct 2008 01:45:38 +0200
 

Modified: branches/drupal-5.0/debian/etc/settings.php
URL: http://svn.debian.org/wsvn/pkg-drupal/branches/drupal-5.0/debian/etc/settings.php?rev=1937&op=diff
==============================================================================
--- branches/drupal-5.0/debian/etc/settings.php (original)
+++ branches/drupal-5.0/debian/etc/settings.php Tue Oct 14 14:15:55 2008
@@ -140,6 +140,8 @@
 ini_set('session.use_only_cookies', 1);
 ini_set('session.use_trans_sid',    0);
 ini_set('url_rewriter.tags',        '');
+ini_set('session.gc_probability',   1);
+ini_set('session.gc_divisor',       100);
 
 /**
  * Drupal automatically generates a unique session cookie name for each site




More information about the Pkg-drupal-commits mailing list