Activities of "liangshiwei"

Hi,

This seems to be a problem.

You can try to override the bootstrap-light.css

Download the bootstrap-light.css file here and put to your project:

https://gist.github.com/realLiangshiwei/b7e4811009fbbdc568b2d2f0955dae10

Themes/LeptonX/Global/side-menu/css/bootstrap-light.css Themes/LeptonX/Global/top-menu/css/bootstrap-light.css

You can try this:

context.Services.ConfigureApplicationCookie(options =>
{
    options.Events.OnSignedIn = async signedContext =>
    {
        var userId= signedContext.Principal.Identity.FindUserId();
    };
});
Answer

Hi,

This ABP suite does not support the specified version to create a project.

But you can using ABP CLI, fro example: abp new MyprojectName -u angular -v 7.4.3 --separate-auth-server

Hi,

Sorry, I didn't receive the email. my email is shiwei.liang@volosoft.com

Will this can help for you? https://support.abp.io/QA/Questions/6383#answer-3a0f9c51-4061-c15b-3343-1258a319af48

Answer

Hi,

We will fix it in the next patch version, your ticket has been refunded.

Answer

Hi,

Will this work for you(Add to MVC project)?

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IRemoteServiceConfigurationProvider))]
public class MyRemoteServiceConfigurationProvider : IRemoteServiceConfigurationProvider
{
    protected AbpRemoteServiceOptions Options { get; }
    protected IAppUrlProvider AppUrlProvider { get; }

    public MyRemoteServiceConfigurationProvider(
        IOptionsMonitor<AbpRemoteServiceOptions> options, 
        IAppUrlProvider appUrlProvider)
    {
        AppUrlProvider = appUrlProvider;
        Options = options.CurrentValue;
    }

    public async Task<RemoteServiceConfiguration> GetConfigurationOrDefaultAsync(string name)
    {
        var configuration = Options.RemoteServices.GetConfigurationOrDefault(name);
        configuration.BaseUrl = await AppUrlProvider.NormalizeUrlAsync(configuration.BaseUrl);
        return configuration;
    }

    public async Task<RemoteServiceConfiguration?> GetConfigurationOrDefaultOrNullAsync(string name)
    {
        var configuration = Options.RemoteServices.GetConfigurationOrDefaultOrNull(name);
        if (configuration != null)
        {
            configuration.BaseUrl = await AppUrlProvider.NormalizeUrlAsync(configuration.BaseUrl);
        }
        
        return configuration;
    }
}
Answer

Hi,

This may be a problem

May I ask which version are you using?

: )

On the login page we see it trying to get the CSS from a different location to the dashboard screen and the layout is also pointing to the side-menu and not the top-menu

There are no menu items on the login page, so the default load is from side-menu.

Showing 2701 to 2710 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.