Activities of "maliming"

Many Thanks Giuseppe

Great

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! 👍

You can check the ps__rail-y element. it should have the display: none style.

Make sure the styles are loaded by page.

.ps__rail-x, .ps__rail-y {
  display: none;
}

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

Showing 1521 to 1530 of 10653 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20