Skip to content

Instantly share code, notes, and snippets.

@carlessanagustin
Created February 18, 2015 06:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlessanagustin/415d156639a4ae2a8e8b to your computer and use it in GitHub Desktop.
Save carlessanagustin/415d156639a4ae2a8e8b to your computer and use it in GitHub Desktop.
Clear Prestashop - Smarty cache
#!/bin/sh
sudo find $1/cache/smarty/cache -type f ! -regex ".*/\(index.php\)" -delete
sudo find $1/cache/smarty/compile -type f ! -regex ".*/\(index.php\)" -delete
sudo find $1/img/ tmp -type f ! -regex ".*/\(index.php\)" -delete
# continue reading: http://www.templatemonster.com/help/prestashop-1-6-x-how-to-clear-smarty-cache.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment