J'utilise Magento 1.9.3.8 et le problème existe toujours.
Vous pouvez trouver ma solution ici :
Fondamentalement, j'ajoute une chaîne unique basée sur l'URL de la page et sur blockId pour chaque information de clé de cache. Ainsi, chaque bloc aura une clé unique:
/**
* 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;
}
Jusqu'à ce que Magento prépare un correctif pour ce problème, vous pouvez créer le fichier:
app / code / local / Mage / Cms / Block / Block.php
et insérez le code de l'URL github ci-dessus en tant que contenu.
Ce code est testé pour Magento 1.9.2. * Et 1.9.3. *