Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. ?>