Jump to content
xt:Commerce Community Forum

Cronjobs Cache unf template_c


Hame

Recommended Posts

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

1.PNG.0fcf984fbe923b0db68b02b2739af4c5.P

2.PNG.0444a4cd3f221456074fffcdb02de007.P

Was mache ich falsch?

 

Danke

Link to comment
Share on other sites

Archived

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

×
  • Create New...