Activities of "berkansasmaz"

Answer

But my issue is after I login seem the authService can not callback then access to the homepage when I using 2 URL like I mentioned.

As far as I understand from below picture, I see that you are redirected to the Angular application. Isn't that right? Where exactly are you redirected after logging in?

I have received your e-mail now and I will review it as soon as possible and get back to you.

hi,

Here is the reason: https://github.com/abpframework/abp/issues/3487#issuecomment-1820454025

Hello,

I can say that nothing has changed in this regard recently. However, based on your question, I deleted the cache of the existing packages in case there is a bottleneck. It should be cached again soon. Other than that, I don't know what extra we can do about it. For now, everything seems to be fine on our side.

Hello,

\Users\rogers\.nuget\volo.abp.studio.extensions.standardsolutiontemplates\0.9.23\lib\net8.0 Can you send me the contents of this path?

You can't set different retry count for each job with DefaultBackgroundJobManager. If you want a custom implementation, you can replace DefaultBackgroundJobManager with your CustomBackgroundJobManager. So it's open-source: https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BackgroundJobs/Volo/Abp/BackgroundJobs/DefaultBackgroundJobManager.cs

[Dependency(ReplaceServices = true)]
public class CustomBackgroundJobManager : DefaultBackgroundJobManager
{
    public CustomBackgroundJobManager(IClock clock, IBackgroundJobSerializer serializer, IBackgroundJobStore store, IGuidGenerator guidGenerator) : base(clock, serializer, store, guidGenerator)
    {
    }

    protected override Task<Guid> EnqueueAsync(string jobName, object args, BackgroundJobPriority priority = BackgroundJobPriority.Normal, TimeSpan? delay = null)
    {
        // Custom implementation
        throw new NotImplementedException();
    }
}

I was able to reproduce the problem according to the information you provided. I have opened an issue related to the issue, you can follow it here if you want.

As a workaround solution, you can add the following code to the blazor-global-styles.css file under wwwroot:

.lpx-main-title {
    visibility: hidden!important;
}```

Can you give me a little more detail about what errors you are getting so I can help you?

The public website does not display the logo and brand name as expected (see image below):

This was done on purpose. The app name with too many characters looks bad for this place. However, if you want, you can update the MyAppBrandingProvider in your project to show the logo instead of the application name as follows.

If you still want the application name to be visible and have no character limit, you can do this by adding the following code to the global.css file under wwwroot:

.lpx-brand-name {
    overflow: visible;
}

There is a big white space at the bottom of each page before the default footer (see image below):

I can't reproduce it. Client side packages may not have been updated after updating the application. If so, you can follow the steps below.

  1. Delete node_modules folder.
  2. Delete wwwroot/libs folder.
  3. Check package.json file. You should see LeptonX version ~4.0.5 in it.
  4. Remove yarn.lock and package.json.lock if exists
  5. Run abp install-libs command

The logo does not fully display in the login page (see image below)

I will open an issue about this. Please let me know if you want a workaround solution. I think we can solve this with a small CSS code addition.

Failed to build Angular project

Can you share the relevant log records etc. with me?

Okay, I'm waiting to hear from you.

Showing 301 to 310 of 737 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.