Magento 1.9.3.8 kullanıyorum ve sorun hala var.
Düzeltmemi burada bulabilirsiniz :
Temel olarak her önbellek anahtarı bilgisine sayfa url ve blockId değerlerine dayalı benzersiz bir dize ekliyorum, böylece her bloğun benzersiz bir anahtarı olacak:
/**
* 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 bu konuda bir düzeltme hazırlayana kadar dosyayı oluşturabilirsiniz:
Uygulamanın / kod / yerel / Büyücü / Cms / Blok / Block.php
ve yukarıdaki github url'den kodu içerik olarak ekleyin.
Bu kod Magento 1.9.2. * Ve 1.9.3. * İçin test edilmiştir.