Magento: How to clear all caches through command line

Posted in Magento on 12 November 2015

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.

Related Magento Posts

January 2024

Using Magento to get small businesses online

For small businesses aiming to establish a formidable online presence and drive sales, Magento emerges as a powerful e-commerce platform offering a suite of features... Continue reading

October 2023

Magento database structure

The database structure of Magento is designed to store and manage various aspects of an e-commerce website, including products, orders, customers, and more. Understanding the... Continue reading

August 2023

Accessibility in ecommerce websites

In the digital age, where online shopping has become an integral part of our lives, ecommerce websites hold the key to business success. Amidst the... Continue reading

More Magento Posts