In EE 1.13 clearing cache from Admin does not actually cleans the cache

535 views Asked by At

In My latest magento setup when I am clearing the cache from admin it does not clear the cache and my changes are not reflecting in frontend.

When I clear the cache directories from server my changes starts reflecting.

Is there anything that admin cache clean functionality is not working.

1

There are 1 answers

0
shook On BEST ANSWER

Magento EE support does have a patch for this. The patch number is 1498_EE_1.13.0.0_v1

The patch adds a public function in app/code/core/Enterprise/PageCache/Model/Observer.php

public function flushCache()
{
    Enterprise_PageCache_Model_Cache::getCacheInstance()->flush();
    return $this;
}

And also changes an observer method in app/code/core/Enterprise/PageCache/etc/config.xml

             <observers>
                 <enterprise_pagecache>
                     <class>enterprise_pagecache/observer</class>
-                        <method>cleanCache</method>
+                        <method>flushCache</method>
                 </enterprise_pagecache>
             </observers>
         </adminhtml_cache_flush_all>