Я использую Magento 1.9.3.8, и проблема все еще существует.
Вы можете найти мое исправление здесь :
По сути, я добавляю уникальную строку, основанную на URL страницы и blockId, к каждой информации о ключе кэша, поэтому у каждого блока будет уникальный ключ:
/**
* 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;
}
Пока Magento не подготовит исправление для этой проблемы, вы можете создать файл:
Приложение / код / местные / Mage / Cms / Block / Block.php
и вставьте код из вышеупомянутого URL GitHub в качестве содержимого.
Этот код проверен на Magento 1.9.2. * И 1.9.3. *