Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

config.inc.php.dist 362B

123456789101112
  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. $config['database_attachments_cache'] = 'db';
  6. // Attachment data expires after specied TTL time in seconds (max.2592000).
  7. // Default is 12 hours.
  8. $config['database_attachments_cache_ttl'] = 12 * 60 * 60;
  9. ?>