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.
My Magento Expertise
If you are planning a new e‑commerce store, considering a platform upgrade or looking for ongoing Magento support, I can provide the expertise you need. Based in Northern Ireland and working with clients locally and internationally, I deliver solutions that help businesses grow.
More Magento posts
—
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 Magento database structure is crucial…
—
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 rush to create visually appealing…
—
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 tailored to their needs. Scalability…
Continue reading "Using Magento to get small businesses online"
—
How can I speed-up my Magento website?
Speed optimisation is crucial for a Magento website as it directly impacts user experience, conversions, and search engine rankings. You should prepare your server so it is set-up to use…