Skip to content

Instantly share code, notes, and snippets.

@dleone81
Last active January 8, 2016 16:53
Show Gist options
  • Save dleone81/b5ae7d52c0256e724a12 to your computer and use it in GitHub Desktop.
Save dleone81/b5ae7d52c0256e724a12 to your computer and use it in GitHub Desktop.
Clean Magento cache via PHP file
<?php
/** Use this file to flush your cache via cron job
is useful to invalidate varnish cache
Magento 1.8.1
**/
require_once('app/Mage.php');
Mage::app()->getCacheInstance()->flush();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment