Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. $config['superAdmins'] = '1';
  2.  
  3. #$config['cache']['enabled'] = true;
  4. #$config['cache']['frontend'] = 'Core';
  5. #$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
  6. #$config['cache']['backend'] = 'Apc';
  7. #$config['cache']['backend'] = 'xcache';
  8.  
  9. $config['superAdmins'] = '1';
  10.  
  11. $config['cache']['enabled'] = true;
  12. $config['cache']['cacheSessions'] = true;
  13. $config['cache']['frontend'] = 'Core';
  14. $config['cache']['frontendOptions'] = array(
  15. 'caching' => true,
  16. 'cache_id_prefix' => 'xf_',
  17. 'automatic_serialization' => true,
  18. 'lifetime' => 0
  19. );
  20.  
  21. $config['cache']['backend'] = 'Libmemcached';
  22.  
  23. $config['cache']['backendOptions'] = array(
  24. 'servers' => array(
  25. array(
  26. 'host' => '127.0.0.1',
  27. 'port' => 11211,
  28. 'persistent' => 'true',
  29. 'weight' => 1
  30. )
  31. )
  32. );
  33.  
  34.  
  35. $config['cookie'] = array(
  36. 'prefix' => 'dt_',
  37. 'path' => '/',
  38. 'domain' => '.derpytesting.com'
  39. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement