Activities of "maliming"

You can check the difference in git. before and after.

hi

You did not provide the parameters required by the base class.

You can compare the code to see. I'm not sure.

Hi

How about this?

https://support.abp.io/QA/Questions/1642/Is-there-a-way-to-bypass-Tenant-for-Translations#answer-eea69656-8bb0-af79-e8fb-39fe16c17820

hi

Can you check the AbpFeatureValues table?

Also clear the cache.

hi

You can check this, https://gist.github.com/jmichas/dab35d9b8e916eae8936322465d76b66

hi

Is it correct that redirect_uri does not have a port?

hi

You can consider overriding the login page. https://support.abp.io/QA/Questions/160/How-to-customize-an-ABP-project

hi

You can try to always switch to host in DynamicLocalizationResourceContributor


public class DynamicLocalizationResourceContributor : ILocalizationResourceContributor
{
    protected LocalizationResource Resource;
    protected IDynamicResourceLocalizer DynamicResourceLocalizer;

    public void Initialize(LocalizationResourceInitializationContext context)
    {
        Resource = context.Resource;
        DynamicResourceLocalizer = context.ServiceProvider.GetRequiredService<IDynamicResourceLocalizer>();
    }

    public LocalizedString GetOrNull(string cultureName, string name)
    {
        using (CurrentTenant.Change(null))
        {
            return DynamicResourceLocalizer.GetOrNull(Resource, cultureName, name);
        }
    }

    public void Fill(string cultureName, Dictionary<string, LocalizedString> dictionary)
    {
        using (CurrentTenant.Change(null))
        {
            DynamicResourceLocalizer.Fill(Resource, cultureName, dictionary);
        }
    }
}


👍

Showing 8941 to 8950 of 10635 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 10, 2025, 06:30