Ich verwende Magento 1.9.3.8 und das Problem besteht immer noch.
Sie können meine Lösung hier finden :
Grundsätzlich füge ich jeder Cache-Schlüsselinformation eine eindeutige Zeichenfolge basierend auf der Seiten-URL und der Block-ID hinzu, sodass jeder Block einen eindeutigen Schlüssel hat:
/**
* 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;
}
Bis Magento ein Update für dieses Problem vorbereitet, können Sie die Datei erstellen:
app / code / local / Mage / Cms / Block / Block.php
und füge den Code aus der obigen Github-URL als Inhalt ein.
Dieser Code wurde für Magento 1.9.2. * Und 1.9.3. * Getestet.