Difference between revisions of "Clear Magento Cache"

From Brian Nelson Ramblings
Jump to: navigation, search
(Created page with "==How to Clear your Default Magento Cache (Disk)== When it comes to clearing your Magento Cache, you have two basic ways to complete this. 1) Login to your Magento Admin Pan...")
 
(How to Clear your Default Magento Cache (Disk))
Line 3: Line 3:
 
When it comes to clearing your Magento Cache, you have two basic ways to complete this.
 
When it comes to clearing your Magento Cache, you have two basic ways to complete this.
  
1) Login to your Magento Admin Panel
+
1) Login to your Magento Admin Panel Navigate to
  Navigate to System -> Cache Management
+
  System -> Cache Management
  
 
[[File:Clear-magento-cache.png]]
 
[[File:Clear-magento-cache.png]]
  
 
2) Via the Linux Command Line
 
2) Via the Linux Command Line
 +
You just need to clear all the cache files from your cache directory
 +
Navigate to your home directory and run the following command
 +
    rm -fr var/cache/*

Revision as of 17:49, 25 March 2013

How to Clear your Default Magento Cache (Disk)

When it comes to clearing your Magento Cache, you have two basic ways to complete this.

1) Login to your Magento Admin Panel Navigate to

  System -> Cache Management

Clear-magento-cache.png

2) Via the Linux Command Line You just need to clear all the cache files from your cache directory Navigate to your home directory and run the following command

   rm -fr var/cache/*