Activities of "maliming"

hi

You can override the IdentitySettingGroupViewComponent and return a new Identity Settings page.

Volo.Abp.Identity.Web.Pages.Identity.Components.IdentitySettingGroup.IdentitySettingGroupViewComponent

If you can get the source code of Identity.Pro module, the component is located at:

Thanks.

Great

hi

Can you try to override CreateUserAsync and UpdateUserAsync methods of ExternalLoginProviderBase?

https://github.com/abpframework/abp/blob/rel-8.0/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/ExternalLoginProviderBase.cs#L37-L157

Thanks.

hi

1, Add AbpHttpClientIdentityModelWebModule to your ApplicationBlazorModule

2, Add AbpCachingStackExchangeRedisModule to your BackendHttpApiHostModule

3, Update BackendHttpApiHostModule's ConfigureAuthentication as below:

private void ConfigureAuthentication(ServiceConfigurationContext context, IConfiguration configuration)
{
    Configure<AbpDistributedCacheOptions>(options =>
    {
        options.KeyPrefix = "AuthServer:";
    });
    context.Services.ForwardIdentityAuthenticationForBearer(OpenIddictValidationAspNetCoreDefaults.AuthenticationScheme);
    context.Services.Configure<AbpClaimsPrincipalFactoryOptions>(options =>
    {
        options.IsDynamicClaimsEnabled = true;
    });
}

Your Blazor and API need to enable the Redis and use the same KeyPrefix.

Thanks.

hi

Can you share the logs.txt from the Development and Production environments?

Also, the API startup module code.

liming.ma@volosoft.com

Thanks.

hi

Can you update your Nuget.Config file to remove the packageSourceMapping sections?

Thanks.

hi

I just created a new 9.2 Blazor webapp project. But the tenant page looks fine.

Are there any errors in the Chrome console?

Thanks.

Thanks , I will check and fix it.

hi

what is your UI page?

MVC or Angular or Blazor?

Thanks.

hi

The previous solution has an AuthServer project.

Can you share a screenshot of your solution (microservice application (7.4.5) ) structure?

Thanks

Showing 841 to 850 of 10678 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 15, 2025, 14:41