来自外部页面的 Magento 会话(同域)

2021-12-19 00:00:00 session php magento magento-1.7

我需要检查用户是否已注册并获取您的信息,但都在同一个域内但在 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();

相关文章