Skip to content

Instantly share code, notes, and snippets.

@dleone81
Last active February 28, 2016 10:57
Show Gist options
  • Save dleone81/a55419ef4c8905a0ef34 to your computer and use it in GitHub Desktop.
Save dleone81/a55419ef4c8905a0ef34 to your computer and use it in GitHub Desktop.
Clean Lesti FPC cache for specific tags
<?php
/**
* Schedule this via cron if yuo need to empty Lesti FPC cache for products and categories
**/
require_once('app/Mage.php');
umask(0);
Mage::app();
Mage::getSingleton('fpc/fpc')->clean(sha1('category'));
Mage::getSingleton('fpc/fpc')->clean(sha1('product'));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment