選択できるのは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. ?>