Magento Expert Forum - Improve your Magento experience
-
Junior Member
What are different type of magento sessions and why they are needed?
View more threads in the same category:
-
-
Junior Member
There are three session in magento : customer session, checkout session, core session
Customer sessions stores data related to customer, checkout session stores data related to quote and order. They are actuall under one session in an array. So firstname in customer session will be $_SESSION['customer']['firstname'] and cart items count in checkout session will be $_SESSION['checkout']['items_count'].
The reason Magento uses session types separately is because once the order gets placed, the checkout session data information should get flushed which can be easily done by just unsetting $_SESSION['checkout'] session variable. So that the session is not cleared, just session data containing checkout information is cleared and rest all the session types are still intact.
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks