如何从 Magento 外部访问 Magento 用户会话?
我正在尝试访问我网站另一部分的 Magento 客户会话。
domain.com/shop/ <- Magento
domain.com/test.php
商店本身就像一个魅力,但是我试图在 test.php 中确定客户是否登录,这样我就可以显示他的名字以及他的购物车的链接。
到目前为止 test.php 的内容:
<?php
require_once dirname(__FILE__).'/shop/app/Mage.php';
umask(0);
Mage::app('default');
Mage::getSingleton('core/session', array('name' => 'frontend'));
var_dump(Mage::getSingleton('customer/session')->isLoggedIn());
?>
我不断返回 bool(false) 。 我已在 domain.com/shop/ 登录 Magento,因此预期为“true”。
我是不是忘记了什么?
Im trying to access the Magento customer session in another part of my website.
domain.com/shop/ <- Magento
domain.com/test.php
The shop itself works like a charm, however im trying to determine within test.php if a customer is logged in, so I can display his name with a link to his cart.
Contents of test.php so far:
<?php
require_once dirname(__FILE__).'/shop/app/Mage.php';
umask(0);
Mage::app('default');
Mage::getSingleton('core/session', array('name' => 'frontend'));
var_dump(Mage::getSingleton('customer/session')->isLoggedIn());
?>
I keep getting bool(false) returned. I'm logged into Magento at domain.com/shop/ so ‘true’ is expected.
Am I forgetting something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议检查 Magento 设置的 cookie 的路径。 最有可能的是,它被设置为
/shop
,因此您上面的文件将无法访问该 cookie。您可以在控制面板中的
System -> 下修改 Magento 用于设置 cookie 的路径。 配置-> 网页(在“常规”标题下)-> 会话cookie管理
I would recommend checking the path of the cookie that Magento sets. Most likely, it is set to
/shop
, so the cookie will not be accessible to your file above it.You can modify the path that Magento uses to set its cookie in the control panel under
System -> Configuration -> Web (under the General heading) -> Session cookie management
它位于
configuration->; Magento 版本上的 web
1.10.1.1it is under
confuguration-> web
on Magento ver. 1.10.1.1同样的问题让我发疯。 我完成了以下工作,直到最后一项解决了它:
如果您已检查上述所有内容,请确保首先像这样自行初始化核心“前端”会话:
然后您可以像这样访问客户/会话:
The same issue was driving me mad. I worked through the following until the last item solved it:
If you've checked all the above, make sure you initialize a core "frontend" session on its own first like this:
Then you can access the customer/session like this: