Skip to content

Instantly share code, notes, and snippets.

@enru
Created December 15, 2014 08:34
Show Gist options
  • Select an option

  • Save enru/c534770faea82810cbe8 to your computer and use it in GitHub Desktop.

Select an option

Save enru/c534770faea82810cbe8 to your computer and use it in GitHub Desktop.
clear magento cache
<?php
$mage_filename = './app/Mage.php';
require_once $mage_filename;
umask(0);
Mage::app('admin');
error_reporting(E_ALL);
Mage::app()->cleanCache();
Mage::dispatchEvent('adminhtml_cache_flush_system');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment