Drupal Page Isn’t Updating After I Make Changes

If you have a web site in drupal and you make changes, but don’t see them, chances are that you need to clear the cache. You can install the drupal cache add-on or you could just create a quick php file and place it on the root. This file only needs this information:
<?php
include_once ‘./includes/bootstrap.inc’;
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
drupal_flush_all_caches();
?>

After running this program, which may take a little time initially, delete the file, or have this file password protected if you plan on re-using it. You don’t want to allow just anyone to wipe out your server cache.

Leave a Comment

Spam protection by WP Captcha-Free