Your Ad Here

Posted By

terrencewood on 04/06/09


Tagged

drupal


Versions (?)

Who likes this?

3 people have marked this snippet as a favorite

Maedi
variantstudios
batandwacolani


drupal clear caches


 / Published in: PHP
 

Script to clear all Drupal caches from a url (it's bookmarkable)

  1. <?php
  2. // save to drupal root directory
  3.  
  4. require_once './includes/bootstrap.inc';
  5. drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
  6. drupal_flush_all_caches();
  7. drupal_set_message('Cache cleared');
  8. drupal_goto();
  9.  
  10. ?>

Report this snippet  

You need to login to post a comment.