You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.inc.php.dist 447B

12345678910111213
  1. <?php
  2. // By default this plugin stores attachments in filesystem
  3. // and copies them into sql database.
  4. // In environments with replicated database it is possible
  5. // to use memcache as a fallback when write-master is unavailable.
  6. $config['redundant_attachments_memcache'] = false;
  7. // Attachment data expires after specified TTL time in seconds (max.2592000).
  8. // Default is 12 hours.
  9. $config['redundant_attachments_cache_ttl'] = 12 * 60 * 60;
  10. ?>