hi
Can you share the logs.txt file? liming.ma@volosoft.com
Thanks
hi
Please set the log level to debug and share the logs again.
Thanks.
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
This is the browser's behavior, which has nothing to do with the abp version. The browser will block cookies that it thinks are unsafe.
You can see the warning message in the browser console.
I suggest you change the website to https. It won't take much time, but this is the best way to solve this problem.
hi
You can specify a custom layout of your component.
https://learn.microsoft.com/en-us/aspnet/core/blazor/components/layouts?view=aspnetcore-8.0#create-a-layout-component https://learn.microsoft.com/en-us/aspnet/core/blazor/components/layouts?view=aspnetcore-8.0#apply-a-layout-to-a-component
hi
use same Auth Server in back-end.
This is what AuthServer( Single Sign-On) is designed for. You can't disable this behavior.
hi
You better use https for all websites.
But if you want to keep using http, you should apply AddSameSiteCookiePolicy to all your websites.
also need to call DisableTransportSecurityRequirement of openiddict.
https://support.abp.io/QA/Questions/3816/How-to-disable-https-in-openiddict#answer-0bea3600-1209-f831-3cbf-3a06f6fa86e0
hi
You can try to set a dev HTTPS certificate for docker.
https://learn.microsoft.com/en-us/aspnet/core/security/enforcing-ssl https://github.com/dotnet/AspNetCore.Docs/issues/6199
hi
I think you are using the identity server 4 right?
https://community.abp.io/posts/patch-for-chrome-login-issue-identityserver4-samesite-cookie-problem-weypwp3n
hi
You can try to use https instead of http.
Chrome will block some cookies during http.
hi
The OpenIddict will store the PostLogoutRedirectUris, RedirectUris in the database. if you changed your app port you also need to update the database.