Considered feature-complete by its maintainers.

Session expire

Expires rows from the session table older than a certain time.

Background

By default, Drupal ships with a session expiration time of just over 23 days, using this directive in settings.php:

ini_set('session.cookie_lifetime',  2000000);

However, for this to work automatically, it requires PHP's garbage collection to be configured correctly.

Since some distributions, e.g. Debian and Ubuntu do not ship with PHP defaults that triggers PHP garbage collection, there is a need to also set the following:

ini_set('session.gc_probability', 1);
ini_set('session.gc_divisor', 100);

This will work, but has some drawbacks:

  • It will be triggered at some random time, rather than at a predictable time.
  • It could slow the response for the unlucky user who happens to trigger it.

So, on sites with a distribution that is not setup as above, or on really busy sites, the sessions table can grow to be very large, and that can cause slow accesses to it, as well as slow writes due to locking, leading to performance bottlenecks.

Vardump

Vardump module enables users with appropriate permissions to dump the Drupal variables table in a variety of formats, including a simple XML representation, key-value pairs, and PHP code.

Courier MTA

The Courier MTA module gives administrators and/or users the ability of managing e-mail accounts for a Courier mail server through a Drupal website.

Partial

Partial was created to speed up theme creation and organization by letting developers quickly breakup and reuse small self contained parts of their theme templates.

It favours a set of simple conventions over defining and configuring a set of specific theme functions and implementing theme hooks.

FlickrUp

Synopsis

The FlickrUp module allows to upload photos to Flickr.
The module provides its own field type, widget and formatters.

Submenu Tree

Submenu Tree provides a method for structuring content hierarchically. For content which has a menu link, Submenu Tree display a list of content which is at the same level or below the content in the menu.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only