You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
285 B

<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
foreach (glob('cache/page/*.cache', GLOB_NOSORT) as $file) {
unlink($file);
}
foreach (glob('cache/index/*.txt', GLOB_NOSORT) as $file) {
unlink($file);
}
rebuilt_cache('all');
echo i18n('All_cache_has_been_deleted');
?>