magento Shopping Cart is Empty on safari & explorer browsers when i add products on these browsersMagento Add Configurable Product to shopping cartShopping cart doesn not go to payment gateway, instead returns to a page “Shopping cart is Empty”Magento Add to Shopping cart IssueMagento 2.1.1 Cart always empty | section-config.js errorEmpty basket after product was added?Add product to cart programatically and update shopping cart using block and template file in Magento2Magento : Home Page New Products Add to Cart Button IssueI can't add products to cart using safariWe can't add this item to your shopping cart right now in magento2Bundle products not showing in shopping cart

Cascading Repair Costs following Blown Head Gasket on a 2004 Subaru Outback

Why is the Turkish president's surname spelt in Russian as Эрдоган, with г?

How precise do models need to be for 3d printing?

Unusual mail headers, evidence of an attempted attack. Have I been pwned?

Why aren't (poly-)cotton tents more popular?

Could Sauron have read Tom Bombadil's mind if Tom had held the Palantir?

What is the legal status of travelling with (unprescribed) methadone in your carry-on?

Intuitively, why does putting capacitors in series decrease the equivalent capacitance?

How to get cool night-vision without lame drawbacks?

Why is C++ initial allocation so much larger than C's?

How to perform Login Authentication at the client-side?

What do you call a weak person's act of taking on bigger opponents?

Policemen catch thieves

Alphabet completion rate

Peace Arch without exiting USA

Inverse-quotes-quine

Plotting with different color for a single curve

How to reply to small talk/random facts in a non-offensive way?

Hot coffee brewing solutions for deep woods camping

Should I include salary information on my CV?

What are the benefits of using the X Card safety tool in comparison to plain communication?

How well known and how commonly used was Huffman coding in 1979?

Do French speakers not use the subjunctive informally?

Smooth Julia set for quadratic polynomials



magento Shopping Cart is Empty on safari & explorer browsers when i add products on these browsers


Magento Add Configurable Product to shopping cartShopping cart doesn not go to payment gateway, instead returns to a page “Shopping cart is Empty”Magento Add to Shopping cart IssueMagento 2.1.1 Cart always empty | section-config.js errorEmpty basket after product was added?Add product to cart programatically and update shopping cart using block and template file in Magento2Magento : Home Page New Products Add to Cart Button IssueI can't add products to cart using safariWe can't add this item to your shopping cart right now in magento2Bundle products not showing in shopping cart






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








2















My store Shopping Cart is Empty is always empty when I use safari browser and internet explorer to view my store and add to cart from this browser.
Please, can anyone help me regarding this? What can be the cause and how to solve the issue?










share|improve this question
























  • I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

    – user33715
    Dec 1 '15 at 16:16

















2















My store Shopping Cart is Empty is always empty when I use safari browser and internet explorer to view my store and add to cart from this browser.
Please, can anyone help me regarding this? What can be the cause and how to solve the issue?










share|improve this question
























  • I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

    – user33715
    Dec 1 '15 at 16:16













2












2








2








My store Shopping Cart is Empty is always empty when I use safari browser and internet explorer to view my store and add to cart from this browser.
Please, can anyone help me regarding this? What can be the cause and how to solve the issue?










share|improve this question
















My store Shopping Cart is Empty is always empty when I use safari browser and internet explorer to view my store and add to cart from this browser.
Please, can anyone help me regarding this? What can be the cause and how to solve the issue?







magento-1 addtocart shopping-cart






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 30 '17 at 6:18









Mohit Kumar Arora

7,2165 gold badges16 silver badges36 bronze badges




7,2165 gold badges16 silver badges36 bronze badges










asked Jul 19 '15 at 8:01









emmanuelemmanuel

516 bronze badges




516 bronze badges












  • I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

    – user33715
    Dec 1 '15 at 16:16

















  • I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

    – user33715
    Dec 1 '15 at 16:16
















I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

– user33715
Dec 1 '15 at 16:16





I'm new in Magento but facing the similar problem (configurable products can't be added to cart). The page will hang for about a minute and it will give a time-out, varien object error message. Can I check with you what are the differences between the original and commented codes? What do I need to fill in exactly at the commented codes? Thanks.

– user33715
Dec 1 '15 at 16:16










1 Answer
1






active

oldest

votes


















0














This issue causes due to session cookie management.



For resolving this issue go to System->Configuration->Web->Session cookie management section, and set




cookie lifetime: 0



cookie path:



cookie domain:



Use Http only: yes



cookie restriction mode: no




and comment the following path file content
file path: /public_html/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php



Orignal code:-



 //session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);


Commented code:-



//session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);


Also, clear the safari browser cache, then shopping cart empty problem get resolved.






share|improve this answer




















  • 1





    These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

    – Fabian Schmengler
    Apr 4 '16 at 22:39













Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f74943%2fmagento-shopping-cart-is-empty-on-safari-explorer-browsers-when-i-add-products%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














This issue causes due to session cookie management.



For resolving this issue go to System->Configuration->Web->Session cookie management section, and set




cookie lifetime: 0



cookie path:



cookie domain:



Use Http only: yes



cookie restriction mode: no




and comment the following path file content
file path: /public_html/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php



Orignal code:-



 //session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);


Commented code:-



//session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);


Also, clear the safari browser cache, then shopping cart empty problem get resolved.






share|improve this answer




















  • 1





    These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

    – Fabian Schmengler
    Apr 4 '16 at 22:39















0














This issue causes due to session cookie management.



For resolving this issue go to System->Configuration->Web->Session cookie management section, and set




cookie lifetime: 0



cookie path:



cookie domain:



Use Http only: yes



cookie restriction mode: no




and comment the following path file content
file path: /public_html/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php



Orignal code:-



 //session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);


Commented code:-



//session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);


Also, clear the safari browser cache, then shopping cart empty problem get resolved.






share|improve this answer




















  • 1





    These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

    – Fabian Schmengler
    Apr 4 '16 at 22:39













0












0








0







This issue causes due to session cookie management.



For resolving this issue go to System->Configuration->Web->Session cookie management section, and set




cookie lifetime: 0



cookie path:



cookie domain:



Use Http only: yes



cookie restriction mode: no




and comment the following path file content
file path: /public_html/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php



Orignal code:-



 //session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);


Commented code:-



//session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);


Also, clear the safari browser cache, then shopping cart empty problem get resolved.






share|improve this answer















This issue causes due to session cookie management.



For resolving this issue go to System->Configuration->Web->Session cookie management section, and set




cookie lifetime: 0



cookie path:



cookie domain:



Use Http only: yes



cookie restriction mode: no




and comment the following path file content
file path: /public_html/app/code/core/Mage/Core/Model/Session/Abstract/Varien.php



Orignal code:-



 //session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
'domain' => $cookie->getConfigDomain(),
'secure' => $cookie->isSecure(),
'httponly' => $cookie->getHttponly()
);


Commented code:-



//session cookie params
$cookieParams = array(
'lifetime' => $cookie->getLifetime(),
'path' => $cookie->getPath(),
// 'domain' => $cookie->getConfigDomain(),
// 'secure' => $cookie->isSecure(),
// 'httponly' => $cookie->getHttponly()
);


Also, clear the safari browser cache, then shopping cart empty problem get resolved.







share|improve this answer














share|improve this answer



share|improve this answer








edited Aug 30 '17 at 6:20









Mohit Kumar Arora

7,2165 gold badges16 silver badges36 bronze badges




7,2165 gold badges16 silver badges36 bronze badges










answered Nov 19 '15 at 10:27









AshwiniAshwini

3292 silver badges16 bronze badges




3292 silver badges16 bronze badges







  • 1





    These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

    – Fabian Schmengler
    Apr 4 '16 at 22:39












  • 1





    These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

    – Fabian Schmengler
    Apr 4 '16 at 22:39







1




1





These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

– Fabian Schmengler
Apr 4 '16 at 22:39





These three values are configurable in "web > session cookie management". Fix your configuration instead of hacking the core like this.

– Fabian Schmengler
Apr 4 '16 at 22:39

















draft saved

draft discarded
















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f74943%2fmagento-shopping-cart-is-empty-on-safari-explorer-browsers-when-i-add-products%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림