When making certain changes to Magento, such as modifying source files, installing extensions, reverting changes, it is necessary to clear the cache in order for the changes to become visible.

Oftentimes the Admin Panel > System -> Cache Management then “Flush Magento Cache” will not have the desired affect.

Command Line

Delete the contents of the var/cache/ folder using the following Linux SSH command. This command MUST be executed from your Magento base directory for it to work properly.

rm -rf var/cache/*

After the cache has been wiped, session values will also need to be cleared from the system. This command MUST be executed from your Magento base directory for it to work properly.

rm -rf var/session/*

Finally once the site has been cleared of old cached and logged data for best results a complete Reindex of the site is recommended.

php shell/indexer.php --reindexall

ka.lpe.sh Script

ka.lpe.sh have put together a really good script for programmatically clearing the cash from SSH. Create a file in your Magento root and name it clearCache.php with the below code:


Magento Developer Belfast

Magento is a feature-rich ecommerce platform built on open-sourcetechnology that provides online merchants with unprecedented flexibility and control over the look, content and functionality of their ecommerce store.