00001 <?php 00023 if(!file_exists('profiles/cmdline.php')) { 00024 die("Run this script from your top-level app directory (eg, /var/www/html/app)\n"); 00025 } 00026 require_once('profiles/cmdline.php'); 00027 00028 if(USE_CACHE === true && defined('CACHE_DRIVER')) { 00029 echo "Flushing ".CACHE_DRIVER." cache...\n"; 00030 $cache =& Registry::get('pronto:cache'); 00031 $cache->flush(); 00032 } 00033 00034 00035 ?>
1.6.1