Tôi đang sử dụng Magento 1.9.3.8 và sự cố vẫn còn tồn tại.
Bạn có thể tìm thấy sửa chữa của tôi ở đây :
Về cơ bản, tôi đang thêm một chuỗi duy nhất dựa trên url trang và blockId cho mỗi thông tin khóa bộ đệm, vì vậy mỗi khối sẽ có một khóa duy nhất:
/**
* 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;
}
Cho đến khi Magento chuẩn bị sửa lỗi cho vấn đề này, bạn có thể tạo tệp:
ứng dụng / mã / cục bộ / Mage / Cms / Block / Block.php
và chèn mã từ url github ở trên làm nội dung.
Mã này được kiểm tra cho Magento 1.9.2. * Và 1.9.3. *