먼저 설정을 일부 변경해야합니다.
여러 웹 사이트간에 고객 계정 공유
여기에서이 기능을 구성해야합니다 System -> Configuration -> Customer Configuration -> Share Customer Accounts
.
모든 고객을 모든 웹 사이트 에 공유 하려면이 설정을 전역으로 설정하십시오 .
웹 사이트 간 로그인 공유
다른 웹 사이트의 상점 간 전환시 세션을 유지하려면 시스템> 구성> 일반> 웹 에서 "프론트 엔드에서 SID 사용"을 활성화하십시오 .
사용자가 등록한 동일한 웹 사이트로 리디렉션하도록합니다
다른 웹 사이트에서 로그인을 시도했을 때 등록한 동일한 웹 사이트에 고객 로그인 을 강제 실행 합니다.
사용하다 customer_login
config.xml에 이벤트 정의
<?xml version="1.0"?>
<config>
<modules>
<Stackexchange_Magento165528>
<version>1.0.0</version>
</Stackexchange_Magento165528>
</modules>
<global>
<models>
<magento165528>
<class>Stackexchange_Magento165528_Model</class>
</magento165528>
</models>
<events>
<customer_login> <!-- identifier of the event we want to catch -->
<observers>
<customer_login_handler> <!-- identifier of the event handler -->
<type>singleton</type> <!-- class method call type; valid are model, object and singleton -->
<class>magento165528/observer</class> <!-- observers class alias -->
<method>redirectoSourceDomain</method> <!-- observer's method to be called -->
<args></args> <!-- additional arguments passed to observer -->
</customer_login_handler>
</observers>
</customer_login>
</events>
</global>
</config>
관찰자 클래스 :
<?php
class Stackexchange_Magento165528_Model_Observer
{
public function redirectoSourceDomain(Varien_Event_Observer $observer)
{
$_customer = $observer->getEvent()->getCustomer();
/*
* Store of website from which website Customer have registered
*/
$_customer_resgister_store_id= $_customer->getStoreId();
if($_customer_resgister_store_id != Mage::app()->getStore()->getStoreId()){
$allStores=Mage::app()->getStores(); //get list of all stores,websites
foreach ($allStores as $_eachStoreId => $val){
$_storeId = Mage::app()->getStore($_eachStoreId)->getId();
//get url using store id
if($_customer_resgister_store_id == $_eachStoreId ){
$Websiteurl= Mage::app()->getStore($_storeId)->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
$_redirecUrl = $Websiteurl."customer/account/login?SID=".Mage::getModel("core/session")->getEncryptedSessionId();
/* Force redirect to repective Website */
Mage::app()->getFrontController()->getResponse()
->setRedirect($_redirecUrl)
->sendResponse();
exit;
}
}
}
return;
}
}
노트:
MAGENTO DEMO STORE 웹 사이트에서이 코드를 테스트했습니다.
이 두 웹 사이트는 website concept을 사용하여 동일한 magento 인스턴스에서 실행 중입니다.