Estou usando o Magento 1.9.3.8 e o problema ainda existe.
Você pode encontrar minha correção aqui :
Basicamente, estou adicionando uma string exclusiva com base na URL da página e blockId a cada informação da chave do cache, para que cada bloco tenha uma chave exclusiva:
/**
* 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;
}
Até o Magento preparar uma correção para esse problema, você pode criar o arquivo:
app / code / local / Mage / Cms / Block / Block.php
e insira o código do URL do github acima como conteúdo.
Este código foi testado para Magento 1.9.2. * E 1.9.3. *