您最多选择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. ?>