Browse Source

enable a `basic` cache by default; notify me if it breaks your chan

pull/40/head
Marcin Łabanowski 9 years ago
parent
commit
10a8219965
  1. 5
      inc/config.php

5
inc/config.php

@ -115,7 +115,7 @@
* http://tinyboard.org/docs/index.php?p=Config/Cache * http://tinyboard.org/docs/index.php?p=Config/Cache
*/ */
$config['cache']['enabled'] = false; $config['cache']['enabled'] = 'php';
// $config['cache']['enabled'] = 'xcache'; // $config['cache']['enabled'] = 'xcache';
// $config['cache']['enabled'] = 'apc'; // $config['cache']['enabled'] = 'apc';
// $config['cache']['enabled'] = 'memcached'; // $config['cache']['enabled'] = 'memcached';
@ -570,6 +570,9 @@
// Use semantic URLs for threads, like /b/res/12345/daily-programming-thread.html // Use semantic URLs for threads, like /b/res/12345/daily-programming-thread.html
$config['slugify'] = false; $config['slugify'] = false;
// Max size for slugs
$config['slug_max_size'] = 80;
/* /*
* ==================== * ====================
* Ban settings * Ban settings

Loading…
Cancel
Save