External file cart empties when using browser back button The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Modify tax rate on cart quote items and recalculateWhen getting current cart from an external file, it's emptyMagento 1.7.0.2 - Subtotal and grand total doubled in cartMagento 2.1: Invoke urlBuilder->getUrl() in a controller in a custom moduleUpdate QTY checkout cart Magento not working after update to 1.9.2.4Price not getting updated for second product…After rewrite MagentoCustomerModelAccountManagement giving me fatal errorMagento 2: Add a product to the cart programmaticallyWhen press browser back button cart is emptyUpdate the Price of an item when adding to the cart
How to determine omitted units in a publication
What can I do if neighbor is blocking my solar panels intentionally?
What is the role of 'For' here?
Mortgage adviser recommends a longer term than necessary combined with overpayments
Does Parliament need to approve the new Brexit delay to 31 October 2019?
How to handle characters who are more educated than the author?
My body leaves; my core can stay
Does Parliament hold absolute power in the UK?
What force causes entropy to increase?
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
Didn't get enough time to take a Coding Test - what to do now?
What do I do when my TA workload is more than expected?
Intergalactic human space ship encounters another ship, character gets shunted off beyond known universe, reality starts collapsing
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Simulating Exploding Dice
Are spiders unable to hurt humans, especially very small spiders?
How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?
How do spell lists change if the party levels up without taking a long rest?
What information about me do stores get via my credit card?
should truth entail possible truth
Loose spokes after only a few rides
Is every episode of "Where are my Pants?" identical?
Are there continuous functions who are the same in an interval but differ in at least one other point?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
External file cart empties when using browser back button
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Modify tax rate on cart quote items and recalculateWhen getting current cart from an external file, it's emptyMagento 1.7.0.2 - Subtotal and grand total doubled in cartMagento 2.1: Invoke urlBuilder->getUrl() in a controller in a custom moduleUpdate QTY checkout cart Magento not working after update to 1.9.2.4Price not getting updated for second product…After rewrite MagentoCustomerModelAccountManagement giving me fatal errorMagento 2: Add a product to the cart programmaticallyWhen press browser back button cart is emptyUpdate the Price of an item when adding to the cart
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have the following code in an external file(same domain) to get the current cart details, and I'm getting all details without any issues.
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file.
When I click the 'view and edit cart' and uses the browser back button the cart is fine.
Any help would be appreciated!
<?php
ini_set("display_errors", true);
ini_set("error_reporting", E_ALL);
require '/var/www/html/app/bootstrap.php';
$bootstrap = MagentoFrameworkAppBootstrap::create(BP, $_SERVER);
$app = $bootstrap->createApplication('MagentoFrameworkAppHttp');
$obj = MagentoFrameworkAppObjectManager::getInstance();
$obj->get('MagentoFrameworkAppState')->setAreaCode('frontend');
$storeManager = $obj->create("\Magento\Store\Model\StoreManagerInterface");
$storeManager->setCurrentStore(1);
$state = $obj->get('MagentoFrameworkAppState');
// Getting the object managers dependencies
$quote = $obj->get('MagentoCheckoutModelSession')->getQuote();
$shoppingcart = $obj->get('MagentoCheckoutModelCart');
$imagehelper = $obj->get('MagentoCatalogHelperImage');
// Get quote and cart items collection
$quote = $shoppingcart->getQuote();
$quoteitems = $quote->getAllItems();
// Getting cart
$cart= $shoppingcart->getCart();
// Getting the subtotal of the cart
$subtotal = number_format($quote->getBaseSubtotal(), 2);
$qty = 0;
$arrProducts = array();
$mediaurl= $storeManager->getStore()->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA);
$baseurl = $storeManager->getStore()->getBaseUrl();
$j = 0;
foreach ($quoteitems as $item)
$arrProducts[$j]['productID'] = $item->getProductId();
$arrProducts[$j]['productName'] = $item->getName();
$arrProducts[$j]['productQty'] = $item->getQty();
$arrProducts[$j]['productPrice'] = number_format($item->getPrice(),2);
$qty += $item->getQty();
$_product = $obj->get('MagentoCatalogModelProduct')->load($item->getProductId());
$arrProducts[$j]['productUrl'] = $_product->getUrlKey();
$arrProducts[$j]['productImage'] = $mediaurl.'catalog/product'.$_product->getSmallImage();
$j++;
?>
<div class="CustomMiniCart">
<?php
if($qty > 0 && !empty($arrProducts)) ?>
<span class="miniCartWrap">
Cart Subtotal: <b>$<?php echo $subtotal; ?></b>
<span class="numItems"><b><?php echo count($arrProducts);?></b> Item(s) in Cart</span>
<a href="https://example.com/checkout/" class="chk">GO TO CHECKOUT</a>
<?php
foreach($arrProducts as $product) ?>
<span class="proWrap">
<span class="left"><a href="https://example.com/<?php echo $product['productUrl'] ?>/"><img src="<?php echo $product['productImage'] ?>" /></a></span>
<span class="right"><a href="https://example.com/<?php echo $product['productUrl']?>/"><?php echo$product['productName']?></a><br><br>
<b>$<?php echo$product['productPrice']?></b><br><br>Qty: <?php echo $product['productQty']?>
</span>
</span>
<?php ?>
<span class="viewcart"><a href="https://example.com/checkout/cart/">VIEW AND EDIT CART</a></span>
</span>
<?php else ?>
<span class="emptyCart">You have no items in your shopping cart.</span>
<?php ?>
</div>
magento-2.1 checkout cart
add a comment |
I have the following code in an external file(same domain) to get the current cart details, and I'm getting all details without any issues.
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file.
When I click the 'view and edit cart' and uses the browser back button the cart is fine.
Any help would be appreciated!
<?php
ini_set("display_errors", true);
ini_set("error_reporting", E_ALL);
require '/var/www/html/app/bootstrap.php';
$bootstrap = MagentoFrameworkAppBootstrap::create(BP, $_SERVER);
$app = $bootstrap->createApplication('MagentoFrameworkAppHttp');
$obj = MagentoFrameworkAppObjectManager::getInstance();
$obj->get('MagentoFrameworkAppState')->setAreaCode('frontend');
$storeManager = $obj->create("\Magento\Store\Model\StoreManagerInterface");
$storeManager->setCurrentStore(1);
$state = $obj->get('MagentoFrameworkAppState');
// Getting the object managers dependencies
$quote = $obj->get('MagentoCheckoutModelSession')->getQuote();
$shoppingcart = $obj->get('MagentoCheckoutModelCart');
$imagehelper = $obj->get('MagentoCatalogHelperImage');
// Get quote and cart items collection
$quote = $shoppingcart->getQuote();
$quoteitems = $quote->getAllItems();
// Getting cart
$cart= $shoppingcart->getCart();
// Getting the subtotal of the cart
$subtotal = number_format($quote->getBaseSubtotal(), 2);
$qty = 0;
$arrProducts = array();
$mediaurl= $storeManager->getStore()->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA);
$baseurl = $storeManager->getStore()->getBaseUrl();
$j = 0;
foreach ($quoteitems as $item)
$arrProducts[$j]['productID'] = $item->getProductId();
$arrProducts[$j]['productName'] = $item->getName();
$arrProducts[$j]['productQty'] = $item->getQty();
$arrProducts[$j]['productPrice'] = number_format($item->getPrice(),2);
$qty += $item->getQty();
$_product = $obj->get('MagentoCatalogModelProduct')->load($item->getProductId());
$arrProducts[$j]['productUrl'] = $_product->getUrlKey();
$arrProducts[$j]['productImage'] = $mediaurl.'catalog/product'.$_product->getSmallImage();
$j++;
?>
<div class="CustomMiniCart">
<?php
if($qty > 0 && !empty($arrProducts)) ?>
<span class="miniCartWrap">
Cart Subtotal: <b>$<?php echo $subtotal; ?></b>
<span class="numItems"><b><?php echo count($arrProducts);?></b> Item(s) in Cart</span>
<a href="https://example.com/checkout/" class="chk">GO TO CHECKOUT</a>
<?php
foreach($arrProducts as $product) ?>
<span class="proWrap">
<span class="left"><a href="https://example.com/<?php echo $product['productUrl'] ?>/"><img src="<?php echo $product['productImage'] ?>" /></a></span>
<span class="right"><a href="https://example.com/<?php echo $product['productUrl']?>/"><?php echo$product['productName']?></a><br><br>
<b>$<?php echo$product['productPrice']?></b><br><br>Qty: <?php echo $product['productQty']?>
</span>
</span>
<?php ?>
<span class="viewcart"><a href="https://example.com/checkout/cart/">VIEW AND EDIT CART</a></span>
</span>
<?php else ?>
<span class="emptyCart">You have no items in your shopping cart.</span>
<?php ?>
</div>
magento-2.1 checkout cart
add a comment |
I have the following code in an external file(same domain) to get the current cart details, and I'm getting all details without any issues.
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file.
When I click the 'view and edit cart' and uses the browser back button the cart is fine.
Any help would be appreciated!
<?php
ini_set("display_errors", true);
ini_set("error_reporting", E_ALL);
require '/var/www/html/app/bootstrap.php';
$bootstrap = MagentoFrameworkAppBootstrap::create(BP, $_SERVER);
$app = $bootstrap->createApplication('MagentoFrameworkAppHttp');
$obj = MagentoFrameworkAppObjectManager::getInstance();
$obj->get('MagentoFrameworkAppState')->setAreaCode('frontend');
$storeManager = $obj->create("\Magento\Store\Model\StoreManagerInterface");
$storeManager->setCurrentStore(1);
$state = $obj->get('MagentoFrameworkAppState');
// Getting the object managers dependencies
$quote = $obj->get('MagentoCheckoutModelSession')->getQuote();
$shoppingcart = $obj->get('MagentoCheckoutModelCart');
$imagehelper = $obj->get('MagentoCatalogHelperImage');
// Get quote and cart items collection
$quote = $shoppingcart->getQuote();
$quoteitems = $quote->getAllItems();
// Getting cart
$cart= $shoppingcart->getCart();
// Getting the subtotal of the cart
$subtotal = number_format($quote->getBaseSubtotal(), 2);
$qty = 0;
$arrProducts = array();
$mediaurl= $storeManager->getStore()->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA);
$baseurl = $storeManager->getStore()->getBaseUrl();
$j = 0;
foreach ($quoteitems as $item)
$arrProducts[$j]['productID'] = $item->getProductId();
$arrProducts[$j]['productName'] = $item->getName();
$arrProducts[$j]['productQty'] = $item->getQty();
$arrProducts[$j]['productPrice'] = number_format($item->getPrice(),2);
$qty += $item->getQty();
$_product = $obj->get('MagentoCatalogModelProduct')->load($item->getProductId());
$arrProducts[$j]['productUrl'] = $_product->getUrlKey();
$arrProducts[$j]['productImage'] = $mediaurl.'catalog/product'.$_product->getSmallImage();
$j++;
?>
<div class="CustomMiniCart">
<?php
if($qty > 0 && !empty($arrProducts)) ?>
<span class="miniCartWrap">
Cart Subtotal: <b>$<?php echo $subtotal; ?></b>
<span class="numItems"><b><?php echo count($arrProducts);?></b> Item(s) in Cart</span>
<a href="https://example.com/checkout/" class="chk">GO TO CHECKOUT</a>
<?php
foreach($arrProducts as $product) ?>
<span class="proWrap">
<span class="left"><a href="https://example.com/<?php echo $product['productUrl'] ?>/"><img src="<?php echo $product['productImage'] ?>" /></a></span>
<span class="right"><a href="https://example.com/<?php echo $product['productUrl']?>/"><?php echo$product['productName']?></a><br><br>
<b>$<?php echo$product['productPrice']?></b><br><br>Qty: <?php echo $product['productQty']?>
</span>
</span>
<?php ?>
<span class="viewcart"><a href="https://example.com/checkout/cart/">VIEW AND EDIT CART</a></span>
</span>
<?php else ?>
<span class="emptyCart">You have no items in your shopping cart.</span>
<?php ?>
</div>
magento-2.1 checkout cart
I have the following code in an external file(same domain) to get the current cart details, and I'm getting all details without any issues.
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file.
When I click the 'view and edit cart' and uses the browser back button the cart is fine.
Any help would be appreciated!
<?php
ini_set("display_errors", true);
ini_set("error_reporting", E_ALL);
require '/var/www/html/app/bootstrap.php';
$bootstrap = MagentoFrameworkAppBootstrap::create(BP, $_SERVER);
$app = $bootstrap->createApplication('MagentoFrameworkAppHttp');
$obj = MagentoFrameworkAppObjectManager::getInstance();
$obj->get('MagentoFrameworkAppState')->setAreaCode('frontend');
$storeManager = $obj->create("\Magento\Store\Model\StoreManagerInterface");
$storeManager->setCurrentStore(1);
$state = $obj->get('MagentoFrameworkAppState');
// Getting the object managers dependencies
$quote = $obj->get('MagentoCheckoutModelSession')->getQuote();
$shoppingcart = $obj->get('MagentoCheckoutModelCart');
$imagehelper = $obj->get('MagentoCatalogHelperImage');
// Get quote and cart items collection
$quote = $shoppingcart->getQuote();
$quoteitems = $quote->getAllItems();
// Getting cart
$cart= $shoppingcart->getCart();
// Getting the subtotal of the cart
$subtotal = number_format($quote->getBaseSubtotal(), 2);
$qty = 0;
$arrProducts = array();
$mediaurl= $storeManager->getStore()->getBaseUrl(MagentoFrameworkUrlInterface::URL_TYPE_MEDIA);
$baseurl = $storeManager->getStore()->getBaseUrl();
$j = 0;
foreach ($quoteitems as $item)
$arrProducts[$j]['productID'] = $item->getProductId();
$arrProducts[$j]['productName'] = $item->getName();
$arrProducts[$j]['productQty'] = $item->getQty();
$arrProducts[$j]['productPrice'] = number_format($item->getPrice(),2);
$qty += $item->getQty();
$_product = $obj->get('MagentoCatalogModelProduct')->load($item->getProductId());
$arrProducts[$j]['productUrl'] = $_product->getUrlKey();
$arrProducts[$j]['productImage'] = $mediaurl.'catalog/product'.$_product->getSmallImage();
$j++;
?>
<div class="CustomMiniCart">
<?php
if($qty > 0 && !empty($arrProducts)) ?>
<span class="miniCartWrap">
Cart Subtotal: <b>$<?php echo $subtotal; ?></b>
<span class="numItems"><b><?php echo count($arrProducts);?></b> Item(s) in Cart</span>
<a href="https://example.com/checkout/" class="chk">GO TO CHECKOUT</a>
<?php
foreach($arrProducts as $product) ?>
<span class="proWrap">
<span class="left"><a href="https://example.com/<?php echo $product['productUrl'] ?>/"><img src="<?php echo $product['productImage'] ?>" /></a></span>
<span class="right"><a href="https://example.com/<?php echo $product['productUrl']?>/"><?php echo$product['productName']?></a><br><br>
<b>$<?php echo$product['productPrice']?></b><br><br>Qty: <?php echo $product['productQty']?>
</span>
</span>
<?php ?>
<span class="viewcart"><a href="https://example.com/checkout/cart/">VIEW AND EDIT CART</a></span>
</span>
<?php else ?>
<span class="emptyCart">You have no items in your shopping cart.</span>
<?php ?>
</div>
magento-2.1 checkout cart
magento-2.1 checkout cart
asked yesterday
ASRASR
816
816
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your code is working fine for Both buttons. It returns to respective pages
Kindly check the URL
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
|
show 2 more comments
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%2f269634%2fexternal-file-cart-empties-when-using-browser-back-button%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
Your code is working fine for Both buttons. It returns to respective pages
Kindly check the URL
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
|
show 2 more comments
Your code is working fine for Both buttons. It returns to respective pages
Kindly check the URL
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
|
show 2 more comments
Your code is working fine for Both buttons. It returns to respective pages
Kindly check the URL
Your code is working fine for Both buttons. It returns to respective pages
Kindly check the URL
answered yesterday
ARUNPRABAKARAN MARUNPRABAKARAN M
454113
454113
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
|
show 2 more comments
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
It returns to respective pages, but the cart is getting empty
– ASR
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
I can go to checkout page with cart and I placed an order.
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
example.com/checkout/cart check your site address
– ARUNPRABAKARAN M
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
I'm not using example.com, using my site address. when you are on the checkout page try the browser back button, then the cart gets empty. Only on that particular page!
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
The problem is, when I go to the checkout page using 'Go to checkout' and press browser back button this cart gets empty. I mean only on this external file. When I click the 'view and edit cart' and uses the browser back button the cart is fine. Read my Question please..
– ASR
yesterday
|
show 2 more comments
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%2f269634%2fexternal-file-cart-empties-when-using-browser-back-button%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