Sto usando Magento 1.9.3.8 e il problema persiste.
Puoi trovare la mia soluzione qui :
Fondamentalmente sto aggiungendo una stringa univoca basata sull'URL della pagina e blockId a ogni informazione sulla chiave della cache, quindi ogni blocco avrà una chiave univoca:
/**
* 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;
}
Fino a quando Magento non preparerà una correzione per questo problema, è possibile creare il file:
app / code / local / Mage / Cms / blocchi / Block.php
e inserisci il codice dall'URL github sopra come contenuto.
Questo codice è testato per Magento 1.9.2. * E 1.9.3. *