Hame Posted February 13, 2016 Report Share Posted February 13, 2016 Haloo, ich bin jetzt am probieren " cronjob automatisch starten". Ich bin kein PHP Programmierer und Scripte sind aus http://forums.xt-commerce.com/topic/76375-cache-leeren-bzw-ausschalten/#comment-341692 mit xtcommerce Handbuch Cronjob erstellt, aber Verzeichnisse werden nicht geleert. Template_c löschen <?php $dir = @opendir ('../templates_c'); while (($entry = @readdir($dir)) !== false) { if(substr($entry, 0, 2) == '%%') { unlink('../templates_c/'.$entry); } echo 'Datei '.$entry.'<br/>'; } @closedir('../templates_c'); Cache löschen ?> <?php $dir = @opendir ('../cache'); while (($entry = @readdir($dir)) !== false) { if(substr($entry, 0, 3) == '_xt') { unlink('../cache/'.$entry); } echo 'Datei '.$entry.'<br/>'; } @closedir('../cache'); ?> Scripte habe ich in xampp\htdocs\shop2\xtCore\cronjobs kopiert. dann Was mache ich falsch? Danke Link to comment Share on other sites More sharing options...
Alex@4tfm Posted February 13, 2016 Report Share Posted February 13, 2016 Das ist mitlerweile im Core bzw. gibt es ein Plugin: xt_clean_cache installieren & deine-url.de/cronjob.php?page=&cleancache=true&typeid=1&&sec=dein-sec-key aufrufen bzw. einen Cronjob dafür erstellen. Sec-Key, siehe hier. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.