Note: This does not happen on 2.1.x
@mzenner1 thank you for your report.
Please specify what do you mean by "Click to another account page".
Any account link in the customer sidebar. "My Orders" will do the trick.
When you first log in as a customer, click "Edit" on your contact info. Do something simple, like add a letter to your last name. Hit save, then click to another account page, like "My Orders" and you get logged out.
@mzenner1 thank you for your report.
Unfortunately, we can't reproduce this issue.
Please try to reproduce this issue on the clean installation ver 2.2.2 and tell us the result.
I can confirm this does not happen in 2.2.2
Hello I am looking for this issue #mm18in.
@RakeshJesadiya thank you for joining. Please accept team invitation here and self-assign the issue.
@mzenner1 thank you for your report.
Unfortunately, we can't reproduce this issue. I have check above steps in Laest Version 2.2.2 for customers.
Check using existing customer and creating new customer, Edit Address and save,
Go To My Order Link and check its working fine.
Thanks.
Hi,
In a clean installation this is still a bug in 2.2.2.
Steps to Reproduce:
Login to account.
Edit Account information
Hit Save button immediately after hitting save, click the Billing Agreements or Gift Cards Link in the account dashboard
User will be logged out
Its not reproducible every time but its definitely possible
I get the same issue with Chrome browser on MAC. It is not happen on firefox.
I am also getting the same issue of logout.
Can confirm that we are experiencing this issue intermittently as well. We do not experience it every time. It appears to be a race condition of some sort.
It looks like I have the same issue, with 2.2.4. It happens all the time and is reproducible, but I have a third party login module, which I am debugging right now. It seems like a bug coming from Magento though.
I'm pretty sure this originates here: vendor/magento/module-customer/Model/Plugin/CustomerNotification.php.
As far as I can tell on post _after_ a customer save event has occurred it regenerates the session id. The save event notifies the system that the customer session should be updated. If another event does a post after the save but before the browser is notified of the session id update it will log the user out.
Check
/vendor/magento/framework/Session/SessionManager.php
there is a function that looks like this
public function regenerateId()
{
if (headers_sent()) {
return $this;
}
$this->isSessionExists() ? session_regenerate_id(true) : session_start();
$this->storage->init(isset($_SESSION) ? $_SESSION : []);
if ($this->sessionConfig->getUseCookies()) {
$this->clearSubDomainSessionCookie();
}
return $this;
}
it should be longer as in
https://github.com/magento/magento2/blob/2.2-develop/lib/internal/Magento/Framework/Session/SessionManager.php#L509
try version 2.2.6
or put this class to
<mage_root>/lib/internal/Magento/Framework/Session/SessionManager.php if that folder was empty as a temporary solution.
Most helpful comment
Check
/vendor/magento/framework/Session/SessionManager.phpthere is a function that looks like this
it should be longer as in
https://github.com/magento/magento2/blob/2.2-develop/lib/internal/Magento/Framework/Session/SessionManager.php#L509
try version 2.2.6
or put this class to
<mage_root>/lib/internal/Magento/Framework/Session/SessionManager.phpif that folder was empty as a temporary solution.