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;
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
add a comment |
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
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
add a comment |
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
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
magento-1 addtocart shopping-cart
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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.
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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