Jump to content
xt:Commerce Community Forum

cache löschen Datei zu groß


gartentechnik24

Recommended Posts

Ich habe es gefunden. Dieses php script erstellen und ausführen

<?php 
function delete($file) {
chmod($file,0777);
if (is_dir($file)) {
$handle = opendir($file);
while($filename = readdir($handle)) {
if ($filename != "." && $filename != "..") {
delete($file."/".$filename);
}
}
closedir($handle);
rmdir($file);
} else {
unlink($file);
}
}

delete("ordnername");
?>
[/PHP]

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...