Many Thanks Giuseppe
hi
I tried to change cookie and Token configs but still face it.
Do you mean this?
https://abp.io/docs/latest/modules/openiddict-pro#setting-tokens-lifetime
Can you try to call CheckTokenExpiration
in AddCookies
?
context.Services.AddAuthentication(options =>
{
options.DefaultScheme = "Cookies";
options.DefaultChallengeScheme = "oidc";
})
.AddCookie("Cookies", options =>
{
options.ExpireTimeSpan = TimeSpan.FromDays(365);
options.CheckTokenExpiration();
})
.AddAbpOpenIdConnect("oidc", options =>
{
options.Authority = configuration["AuthServer:Authority"];
options.RequireHttpsMetadata = configuration.GetValue<bool>("AuthServer:RequireHttpsMetadata");
hi
Try the new TranslateParameterizedCollectionsToConstants
Configure<AbpDbContextOptions>(options =>
{
options.Configure(actions =>
{
actions.UseSqlServer(o => o.TranslateParameterizedCollectionsToConstants());
actions.DbContextOptions.EnableSensitiveDataLogging();
});
});
see https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-8.0/breaking-changes#mitigations
hi
What’s your sql server version? What’s your abp package version? 8.x or 9.x?
Thanks.
hi
The system cannot find the file specified
Have you uploaded the openiddict.pfx
to Azure as well?
https://abp.io/docs/latest/deployment/configuring-openiddict
great! 👍
hi
Try to add the below style to /wwwroot/global-styles.css
.ps__rail-x, .ps__rail-y {
display: none;
}
This will be fixed in next lepton version.
Thanks.
hi
How can I reproduce this problem in a new template project?
Can you share the code and steps?
liming.ma@volosoft.com
Thanks