Skip to content

Instantly share code, notes, and snippets.

@minhvn
Forked from adamkudrna/settings.php
Created May 5, 2019 14:12
Show Gist options
  • Save minhvn/ac99bdb8d1a5dc708e5e36d7e8369d30 to your computer and use it in GitHub Desktop.
Save minhvn/ac99bdb8d1a5dc708e5e36d7e8369d30 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