Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using

$id = 'WelcomeWindow';
$data = '1';
$time = time()+60*60*24*30;
Mage::getModel('core/cookie')->set($id, $data, $time);

And to get the cookie back

$data_from_cookie = Mage::getModel('core/cookie')->get('WelcomeWindow');

This kind of works but - when getting the cookie it doesn't show the value untill I refersh the Magento Cache within the admin area, is there a way around this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
251 views
Welcome To Ask or Share your Answers For Others

1 Answer

I've sorted it, for some reason I've moved the code to be executed before anything else is delivered to the page, so I placed it at the top of head.phtml and it seems to work fine.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...