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 613B

12345678910111213141516
  1. <?php
  2. // By default this plugin stores attachments in filesystem
  3. // and copies them into sql database.
  4. // You can change it to use 'memcache' or 'apc'.
  5. // -----------------------------------------------------------
  6. // WARNING: Remember to set max_allowed_packet in database or
  7. // config to match with expected max attachment size.
  8. // -----------------------------------------------------------
  9. $config['database_attachments_cache'] = 'db';
  10. // Attachment data expires after specied TTL time in seconds (max.2592000).
  11. // Default is 12 hours.
  12. $config['database_attachments_cache_ttl'] = 12 * 60 * 60;
  13. ?>