İlk olarak, ayarlarda bazı değişiklikler yapmanız gerekir.
Müşteri hesaplarını birden çok Web Sitesi arasında paylaşma
Burada bu özelliği yapılandırmak olmalıdır: System -> Configuration -> Customer Configuration -> Share Customer Accounts
.
Her müşteriyi tüm web sitelerinde paylaşmak için bu ayarı Global olarak yapın .
Giriş bilgilerini web siteleri arasında paylaşma
Farklı web sitelerindeki mağazalar arasında geçiş yaparken oturumu korumak için Sistem> Yapılandırma> Genel> Web'de "Ön Uçta SID Kullan" seçeneğini etkinleştirin :
Kullanıcıları kaydettikleri web sitesine yönlendirmeye zorlayın
Başka bir web sitesinden giriş yapmaya çalıştığımızda , aynı web sitesine müşteri girişini zorla gir .
kullanım customer_login
Olayı config.xml olarak tanımlayın
<?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>
Gözlemci sınıfı:
<?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;
}
}
NOT:
MAGENTO DEMO MAĞAZA WEB SİTELERİMDE BU KODU TEST EDİYORUM.
Bu iki web sitesi, web sitesi konsepti kullanılarak aynı magento örneğinden çalışmaktadır.