Saturday, August 11, 2012

Magento: Clear the cache with PHP script.


It always take time to get rid of the Magento cache. However cache is needed to execute the request faster. One way of clearing the cache is delete all the directories inside the /var/cache directory. Doing that manually it will take some time if you are connected to the FTP server.
The easiest way of clearing the cache in Magento is here.
01<?php
02 
03ini_set('max_execution_time', 3600);
04ini_set("memory_limit","256M");
05 
06$script "rm -rf var/cache/*";
07$results = system($script,$retval);
08echo " Cache cleared, RETURN VALUE: $retval\n";
09 
10?>
Name the file clearcache.php. Put it in the root directory of the Magento setup & execute in the browser.

No comments:

Post a Comment