Saya menggunakan Magento 1.9.3.8 dan masalahnya masih ada.
Anda dapat menemukan perbaikan saya di sini :
Pada dasarnya saya menambahkan string unik berdasarkan url halaman dan blockId ke setiap info kunci cache, sehingga setiap blok akan memiliki kunci unik:
/**
* Generates a string based on the page url (for example category/product pages) and concatenate the block id to the url
* Removes the caracters: /, . , &, = and , from this string
*/
private function generateUrlBasedString($blockId = null)
{
$currentUrl = Mage::helper('core/url')->getCurrentUrl();
$url = Mage::getSingleton('core/url')->parseUrl($currentUrl);
$path = '_' . $url->getPath();
$path = str_replace('/', '', $path);
$path = str_replace('.', '', $path);
$path = str_replace('&', '', $path);
$path = str_replace(',', '', $path);
$path = str_replace('=', '', $path);
if(isset($blockId)) {
$path .= '_' . $blockId;
}
return $path;
}
/**
* Retrieve values of properties that unambiguously identify unique content
*
* @return array
*/
public function getCacheKeyInfo()
{
$blockId = $this->getBlockId();
if ($blockId) {
$result = array(
'CMS_BLOCK',
$blockId,
Mage::app()->getStore()->getCode() . $this->generateUrlBasedString($blockId),
);
} else {
$result = parent::getCacheKeyInfo();
}
return $result;
}
Sampai Magento akan menyiapkan perbaikan untuk masalah ini, Anda dapat membuat file:
app / code / local / Mage / Cms / Block / Block.php
dan masukkan kode dari url github di atas sebagai konten.
Kode ini diuji untuk Magento 1.9.2. * Dan 1.9.3. *