本文介绍了来自外部页面的 Magento 会话(同域)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我需要检查用户是否已注册并获取您的信息,但都在同一个域内但在 Magento 结构之外的文件中:/mymagento/islogged.php
I need to check that a user is registered and get your information, but all in a file within the same domain but outside the structure of Magento: /mymagento/islogged.php
require_once ('app/Mage.php');
Mage::app();
define('ROOT', Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB));
$sessionCustomer = Mage::getSingleton("customer/session");
if($sessionCustomer->isLoggedIn()) {
$customer = $sessionCustomer->getCustomer();
$telefono = $customer->getTelefonoMovil();
} else {
header('Location: '.ROOT.'customer/account/login/');
}
但是它不起作用,找不到会话.我已查看以下主题:
But it does not work, can not find the session. I have reviewed the following threads:
- Magento 会话在外部页面(同域)中不起作用
- Magento 客户/会话不工作
- 如何在外部创建 Magento 会话Magento?
- 如何从 Magento 外部访问 Magento 用户的会话?
- 检查外部页面上的 Magento 登录
- 在另一个页面中获取 magento 会话变量
推荐答案
最后我是这样做的:
require_once ('app/Mage.php');
Mage::app();
// Define the path to the root of Magento installation.
define('ROOT', Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB));
// Obtain the general session and search for an item called 'customer_id'
$coreSession = Mage::getSingleton('core/session', array('name' => 'frontend'));
if(isset($coreSession['visitor_data']['customer_id'])){
$customerId = $coreSession['visitor_data']['customer_id'];
} else {
header('Location: '.ROOT.'customer/account/login/');
}
// Load the user session.
Mage::getSingleton('customer/session')->loginById($customerId);
$customerSession = Mage::getSingleton("customer/session");
// We verified that created successfully (not required)
if(!$customerSession->isLoggedIn()) {
header('Location: '.ROOT.'customer/account/login/');
}
// Load customer
$customer = $customerSession->getCustomer();
// We get cell phone
$telefono = $customer->getTelefonoMovil();
这篇关于来自外部页面的 Magento 会话(同域)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!