hi
Maybe {UrlEncoder.Default.Encode(confirmationToken)} cause the problem. I'm not sure. If you find the way to reproduce this I can check it.
var confirmationToken = await UserManager.GenerateEmailConfirmationTokenAsync(user);
var link = "confirmationToken={UrlEncoder.Default.Encode(confirmationToken)}";
eg:
CfDJ8CMMAZi/KQ1PgRA2b3w2rbDriFgwCA0wWE3hlavTdl0R9qyQBNNkYqXhgiT/buELozMq47EMr8/7SFsh293golGHO9V2ax96a3Gldwg+LRg03kxeQlqo5wd9v/DHQNq1Zb0R41m5Im5FSKz2mVltar3gnFwrE2bNK7/xmAdKxYksOSK59sQVPPQxPb7QZt/WGSIuuWUy/oPya+EuVzJZXBDuz9nJCQye2iA5cZad5hEHvaSCr3UQIzu3d1/kcn5zOg==
hi
Please check this pr https://github.com/abpframework/abp/pull/4857/files
hi fallas
You can try to override the default language texts.
https://docs.abp.io/en/abp/latest/Localization#inherit-from-other-resources
hi jhan
If you can provide simple steps to reproduce the problem, I can check it further.
hi toan.nguyen
We will release it in 4.3 Please refer to this before that: https://github.com/abpframework/abp/pull/7716
hi @selinkoykiran
Can you share your full code?
hi
context.Services.ConfigureApplicationCookie(options =>
{
options.ExpireTimeSpan = TimeSpan.FromHours(10);
//options.SlidingExpiration = true;
//The SlidingExpiration is set to true to instruct the middleware to re-issue a new cookie with a new expiration time any time it processes a request which is more than halfway through the expiration window.
});
With Remember me:
Without Remember me:
I don't have source code.
You can send me an email. I will share the abp-translation.json
or en.json
of commericial modules to you.
liming.ma@volosoft.com
hi
They are net core application. you can follow this official Microsoft document
hi
For MVC this is expected.