在多种货币之间切换时,Magento Enterprise全页缓存(FPC)购物车边栏问题

时间:2014-06-30 12:34:01

标签: php hole-punching magento-fpc

问题:

如果您的magento企业商店启用了多种货币,并且您正在使用购物车边栏快速概览购物车中的商品:当客户尝试在不同货币之间切换时,全页缓存将成为恶棍。购物车边栏根据货币切换不会更新。

1 个答案:

答案 0 :(得分:1)

我已经发表了答案 http://www.eglobeits.com/blog/magento/magento-enterprise-edition-full-page-cache-mutli-currencies-mini-cart-sidebar-issue-when-switching-currencies/, 但在下面添加相同内容以供快速参考。

修复: 重新定义Cart Side Place holder容器并定义新的缓存Id生成器,而不是使用fpc的原始生成器。

按照以下步骤操作:

<强> 1。使用以下内容创建app / code / local / Egits / PageCache / etc / config.xml

   <?xml version="1.0"?>
   <config>
       <modules>
           <Egits_PageCache>
               <version>0.0.1</version>
           </Egits_PageCache>
       </modules>
    </config>

<强> 2。使用以下内容创建app / code / etc / modules / Egits_PageCache.xml

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <Egits_PageCache>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
                <Enterprise_PageCache />
            </depends>
        </Egits_PageCache>
    </modules>
</config>

第3。使用以下内容创建app / code / local / Egits / PageCache / etc / cache.xml

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <placeholders>
        <cart_sidebar>
            <block>checkout/cart_sidebar</block>
            <placeholder>CART_SIDEBAR</placeholder>
            <container>Egits_PageCache_Model_Container_Sidebar_Cart</container>
            <cache_lifetime>86400</cache_lifetime>
        </cart_sidebar>
    </placeholders>
</config>

<强> 4。使用以下内容创建app / code / local / Egits / PageCache / Model / Container / Sidebar / Cart.php

<?php

class Egits_PageCache_Model_Container_Sidebar_Cart extends Enterprise_PageCache_Model_Container_Sidebar_Cart
{
    const CURRENCY_COOKIE = 'currency';

    /**
      * Get cache id for the block
      * @return string
      */
    protected function _getCacheId()
    {
        $cookieCart = Enterprise_PageCache_Model_Cookie::COOKIE_CART;
        $cookieCustomer = Enterprise_PageCache_Model_Cookie::COOKIE_CUSTOMER;
        $curreny = array_key_exists(self::CURRENCY_COOKIE, $_COOKIE) ? $_COOKIE[self::CURRENCY_COOKIE] : '';
        return md5(
            Enterprise_PageCache_Model_Container_Advanced_Quote::CACHE_TAG_PREFIX
            . (array_key_exists($cookieCart, $_COOKIE) ? $_COOKIE[$cookieCart] : '')
            . (array_key_exists($cookieCustomer, $_COOKIE) ? $_COOKIE[$cookieCustomer] : '')
            . $curreny
        );
    }

}

<强> 4。刷新所有缓存,你就完成了! :) ..非常简单......嗯?