magento静态块图像间歇性消失

时间:2013-12-12 10:18:48

标签: magento

Magento网站主页包含静态块(图像)和特色产品。有时静态块图像消失,还有特色产品部分。但那个时候顶级菜单和页脚加载很好。静态块图像在几分钟后加载而没有做任何事情。我不知道为什么会发生这种情况。请帮我找出这个问题的原因。

1 个答案:

答案 0 :(得分:0)

当我遇到这个问题之前我需要覆盖有问题的块(在我的情况下它是页脚块)并禁用该块的缓存。

在Mage_Page_Block_Html_Footer中(app / code / core / Mage / Page / Block / Html / Footer.php)

    protected function _construct()
    {
        //commented out to disable the caching of the footer block 
//        $this->addData(array(
//            'cache_lifetime'=> false,
//            'cache_tags'    => array(Mage_Core_Model_Store::CACHE_TAG, Mage_Cms_Model_Block::CACHE_TAG)
//        ));
    }

http://www.magentocommerce.com/boards/viewthread/47197/似乎是一个更好的解决方案。