diff options
Diffstat (limited to 'common/admin/purgecache.php')
-rw-r--r-- | common/admin/purgecache.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/common/admin/purgecache.php b/common/admin/purgecache.php new file mode 100644 index 0000000..a5af5cf --- /dev/null +++ b/common/admin/purgecache.php @@ -0,0 +1,21 @@ +<?php +require_once dirname(__FILE__).'/inc/auth.inc.php'; + +if (isset($_POST['purge'])){ + $dir = dirname(__FILE__).'/../cache/'; + + $dh = opendir($dir); + + while ($filename = readdir($dh)) { + if ($filename == '.' OR $filename == '..') { + continue; + } + + if (filemtime($dir . DIRECTORY_SEPARATOR . $filename) < time()) { + @unlink($dir . DIRECTORY_SEPARATOR . $filename); + } + } +} + +header('Location: administration.php'); +die();
\ No newline at end of file |