vote up 1 vote down star

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?

flag

2 Answers

vote up 3 vote down check

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

link|flag
I've now set it to / and that works perfectly! Thanks. – Martijn Heemels Jul 8 at 16:05
vote up -1 vote down

For me setting / did not work... In my magento installation the path is blank... Can it be something else I'm doing wrong???

link|flag
It's blank by default, which sets it to the Magento base_url. Setting it to / should make the cookie visible to the entire domain. Without knowing more about your setup I have no idea. You should probably post your question separately though, and provide some more details. Since this is a Q&A site, your question isn't really appropriate as an answer to mine. – Martijn Heemels Sep 7 at 22:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.