@tressie.damore
To disable cache in Drupal, follow these steps:
This will disable cache for both pages and blocks on your Drupal site. Note that disabling cache can significantly impact the performance of your site, especially if you have a lot of traffic. You should only disable cache if you need to make changes to your site that are not being reflected when cache is enabled.
Alternatively, you can also disable cache by adding the following line of code to your site's settings.php file:
1
|
$conf['cache'] = 0; |
This will globally disable caching for your site.
@tressie.damore
To disable caching in Drupal, you can follow these steps:
By following these steps, you will disable caching for anonymous users and prevent Drupal from aggregating and compressing CSS and JavaScript files. This can be useful for development or debugging purposes when you want to see the changes you make immediately without waiting for the cache to update. However, disabling caching on a live website may affect its performance, so it's recommended to enable caching once you have completed your development work or debugging.