Clearing cache from the shell

Magento often needs to refresh it's cache. In some occasion, you may want to flush either partialy or completly from the shell.

This is how you may acheive this task:
php ~/www/shell/cleanCache.php --clean <your cache>

The full list of possibilities:
Usage:  php ~/www/shell/cleanCache.php -- [options]

    --clean <cache>          Clean <cache>. Any of [image|data|stored|js_css|files]
    all                      Clean all caches
    info                     Show allowed caches
    help                     This help
To get an easy list of the different caches:
php ~/www/shell/cleanCache.php info
Allowed caches:
 image
 data
 stored
 js_css
 files


Examples

  • Clean ALL
    php ~/www/shell/cleanCache.php all

  • Clean the configuration, layout...
    php ~/www/shell/cleanCache.php --clean data

  • Clean the front end styling...
    php ~/www/shell/cleanCache.php --clean js_css



The github link to the script:
https://raw.githubusercontent.com/machampagne/magento-utils/master/shell/cleanCache.php

  • 8 Users Found This Useful
Was this answer helpful?

Related Articles

How to add and edit CMS static blocks in Magento

To add and edit static blocks, log in to the admin panel of your store and go to CMS...

How to add and edit admin users and user roles in Magento

In addition to the admin account that's created while installing your Magento you can add more...

How to disable guest checkout

By default guests can shop without creating a customer account on your eCommerce. You can...

SCRIPT_NAME & SCRIPT_FILENAME errors with cron

CRON ErrorsYou may encounter those errors in your log while inspecting those:[23-Oct-2016...

Migrating your CMS from one server to another one

From time to time, you may need to push your CMS from your staging env to your production...