Skip to content

Instantly share code, notes, and snippets.

@adamkudrna
Created January 25, 2017 13:37
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save adamkudrna/1b96bc55226117e456545d6503448ae3 to your computer and use it in GitHub Desktop.
Save adamkudrna/1b96bc55226117e456545d6503448ae3 to your computer and use it in GitHub Desktop.
Drupal 7 disable cache in settings.php
$conf['cache'] = 0; // Page cache
$conf['page_cache_maximum_age'] = 0; // External cache TTL
$conf['preprocess_css'] = FALSE; // Optimize css
$conf['preprocess_js'] = FALSE; // Optimize javascript
$conf['views_skip_cache'] = TRUE; // Views caching
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment