Activities of "berkansasmaz"

Hi,

I tried the script you sent and downloaded all except Volo.Abp.Account.Pro and Volo.ClientSimulations. Volo.Abp.Account.Pro is in the first place in the module list, the script you sent parse it incorrectly while parse it, except for that, there is no problem. Here is the screenshot:

Can you execute the following command in terminal to understand the problem?

abp login-info

I talked to my relevant teammates and tried to verify the source you provided. However, I think there is a misunderstanding because there is no CSS and JS information in the source you provided. You can find the screenshot from the relevant months below:

By the way, there is no CSS and JS for 2024 in the source you threw, but if you look at the previous year, for example 2023, you can find screenshots there. See: https://web.archive.org/web/20230322115719/https://commercial.abp.io/Pricing


So I can say that we never give source code with a Team license. However, you mentioned that you have access to some PRO modules, which are they?

Hi,

Thank you for the useful information. There is probably a problem with the macOS. As a workaround, you can use the following command to turn them all stoped:

pkill -f abp-studio

Answer

Hi,

I created a project with 6.0.1 and tried it with the codes you mentioned, but I could not reproduce your problem.

In the picture below you can see where I set this value:


In your case, in which project is WebAppFeatureDefinitionProvider defined and where did you set this value? Also, in which project is SyncActiveFarmsWorker defined?

You can update your RegisterModel as follows. I override the RegisterLocalUserAsync method in the example, but you can remove it if it is not needed in your case:

public class MyRegisterModel : RegisterModel
{
    public MyRegisterModel(IAuthenticationSchemeProvider schemeProvider, IOptions<AbpAccountOptions> accountOptions, IAccountExternalProviderAppService accountExternalProviderAppService, ICurrentPrincipalAccessor currentPrincipalAccessor, IHttpClientFactory httpClientFactory) : base(schemeProvider, accountOptions, accountExternalProviderAppService, currentPrincipalAccessor, httpClientFactory)
    {
    }

    protected override async Task<IdentityUser> RegisterLocalUserAsync()
    {
        ValidateModel();

        var captchaResponse = string.Empty;
        if (UseCaptcha)
        {
            captchaResponse = HttpContext.Request.Form[RecaptchaValidatorBase.RecaptchaResponseKey];
        }
        var userDto = await AccountAppService.RegisterAsync(
            new RegisterDto
            {
                AppName = "MVC",
                EmailAddress = Input.EmailAddress,
                Password = Input.Password,
                UserName = Input.UserName,
                ReturnUrl = ReturnUrl,
                ReturnUrlHash = ReturnUrlHash,
                CaptchaResponse = captchaResponse
            }
        );

        return await UserManager.GetByIdAsync(userDto.Id);
    }
}

Hi,

I got it, this code comes from the Multi-Tenancy(open-source) module. Here is the code: https://github.com/abpframework/abp/blob/6f8847dd012fa715be029385b9bc1b52e1a0afd5/framework/src/Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy/Pages/Abp/MultiTenancy/TenantSwitchModal.cshtml

We have looked into your case, but we have never given source code access with the Team license. I think you are confusing it with open-source code.

Hello, I have forwarded your problem to the relevant people and they will contact you.

Hello,

ABP obtain a cancellation token from HttpContext. Other than that, it doesn't do anything extra to cancel a request. See more: https://abp.io/docs/latest/framework/infrastructure/cancellation-token-provider

I don't think the problem is caused by ABP, but if you can send a minimal reproducible example, we can solve your problem together.

Answer

Hello,

I tried to reproduce the problem but I could not. BackgroundJobEnabled should be false, but this value may also be coming from the cache. In order to determine this situation, can you confirm whether you see the value in the database when you close and open your Redis server or restart the application?

Showing 201 to 210 of 743 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.2.0-preview. Updated on February 17, 2026, 09:10
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.