Activities of "liangshiwei"

This is the problem of the IIS server.

You can check: https://stackoverflow.com/questions/4413455/why-does-http-delete-verb-return-405-error-method-not-allowed-for-my-restful-w

Hi,

You can use the external login and disable the local login.

https://docs.abp.io/en/commercial/latest/modules/account#install-a-new-external-login https://docs.abp.io/en/commercial/latest/modules/account#local-login

For SSO, you can configure the shared cookie domain:

https://learn.microsoft.com/en-us/aspnet/core/security/cookie-sharing?view=aspnetcore-8.0

for example:

context.Services.AddAuthentication(options =>
{
    options.DefaultScheme = "Cookies";
    options.DefaultChallengeScheme = "oidc";
})
.AddCookie("Cookies", options =>
{
    options.Cookie.Name = ....;
    options.Cookie.Domain = ....;

    .....
})

index.html

Hi,

They are actually set by JS.

You can subscribe to events:

myleptonx.js

leptonx.AppearanceSettingEvent.on(document.body, evnet => {
   
    var theme = evnet.detail.theme;

    setCookie("lpx_loaded-css", theme, ".sharedDomain.com");
    setCookie("lpx_appearance", theme, ".sharedDomain.com");
});

function setCookie(name, value, domain, day = 365) {
    var expires = new Date();
    expires.setTime(expires.getTime() + (day * 24 * 60 * 60 * 1000));
    document.cookie = name + '=' + value + ';expires=' + expires.toUTCString() + ';domain=' + domain + ';path=/';
}

Hi,

My email is shiwei.liang@volosoft.com

Hi,

It is actually the log written by ABP, you can ignore it: https://github.com/abpframework/abp/blob/dev/modules/openiddict/src/Volo.Abp.OpenIddict.Domain/Volo/Abp/OpenIddict/Authorizations/AbpOpenIddictAuthorizationStore.cs#L75

:)

Hi,

This is enough, ok please share the log. thanks.

Answer

UI Type: Blazor Server

It seems you are using the Blazor Server, you should create a Blazor component page instead of cshtml.

Hi,

Or is there any option we can turn on to get even more details log?

You can set IdentityModelEventSource.ShowPII = true;

Showing 2761 to 2770 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.