jokercorsa Posted April 18, 2019 Share Posted April 18, 2019 Ciao a tutti esiste della documentazione su come utilizzare il cron tasks manager su prestashop 1.7.5? al momento ho bisogno di pulire la cache tutti i giorni. Link to comment Share on other sites More sharing options...
jokercorsa Posted April 19, 2019 Author Share Posted April 19, 2019 Ciao il sito è collegato ad un gestionale che ha bisogno della cancellazione della cache per aggiornare i prodotti e le quantità Link to comment Share on other sites More sharing options...
jokercorsa Posted April 19, 2019 Author Share Posted April 19, 2019 ho trovato poi questo codice da aggiungere come file al root di ps 1.7.5 mi dite cosa c'e che non va? ho provato a lanciarlo ma non cancella <?php include('./config/config.inc.php'); $token = Tools::getValue('token'); if($token == "vBnmmP3218") { Tools::clearSmartyCache(); Tools::clearXMLCache(); Media::clearCache(); Tools::generateIndex(); echo "Cache clear ended successfully."; } else { echo "Wrong security token - cache clear failed."; } ?> Link to comment Share on other sites More sharing options...
Guest Posted April 21, 2019 Share Posted April 21, 2019 On 19/4/2019 at 10:18 AM, jokercorsa dice: ho trovato poi questo codice da aggiungere come file al root di ps 1.7.5 mi dite cosa c'e che non va? ho provato a lanciarlo ma non cancella <?php include('./config/config.inc.php'); $token = Tools::getValue('token'); if($token == "vBnmmP3218") { Tools::clearSmartyCache(); Tools::clearXMLCache(); Media::clearCache(); Tools::generateIndex(); echo "Cache clear ended successfully."; } else { echo "Wrong security token - cache clear failed."; } ?> questo codice elimina si le cache che vedi, non elimina la cache fisica smarty ( ossia i file sul server /httpdocs/cache/smarty/cache e /httpdocs/cache/smarty/compile ) Saluto Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now