robdecker
2/18/2014 - 9:48 PM

Drupal 7: clear all caches from a php file.

Drupal 7: clear all caches from a php file.

<?php
define('DRUPAL_ROOT', getcwd());

require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

drupal_flush_all_caches();
?>