summaryrefslogtreecommitdiffstats
path: root/admin/purgecache.php
diff options
context:
space:
mode:
authorMaurice Svay <maurice@svay.com>2010-02-16 15:23:41 +0000
committerMaurice Svay <maurice@svay.com>2010-02-16 15:23:41 +0000
commitec4326e4bab52c558d1f2564ab2fa0545f81b071 (patch)
tree2c7b9d1bd5a1ee72be2e40e4b45895877777aefe /admin/purgecache.php
downloadplanet-ec4326e4bab52c558d1f2564ab2fa0545f81b071.tar
planet-ec4326e4bab52c558d1f2564ab2fa0545f81b071.tar.gz
planet-ec4326e4bab52c558d1f2564ab2fa0545f81b071.tar.bz2
planet-ec4326e4bab52c558d1f2564ab2fa0545f81b071.tar.xz
planet-ec4326e4bab52c558d1f2564ab2fa0545f81b071.zip
Initial commit
Diffstat (limited to 'admin/purgecache.php')
-rw-r--r--admin/purgecache.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/admin/purgecache.php b/admin/purgecache.php
new file mode 100644
index 0000000..a5af5cf
--- /dev/null
+++ b/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