Hi,
Yes, I was able to reproduce the problem, I have opened an internal issue to investigate it in more detail. It seems to take a long time to determine the problem, but we will inform you as soon as we determine it. Thank you for your patience.
Thanks, I examined the DBContext you sent, but I couldn't come to a conclusion. Do you have a chance to send your complete project so we can solve it faster? Because I cannot reproduce this problem when I created a project from scratch.
Hi,
I missed what you wrote because someone else replied. If you want, we can schedule it for Monday?
Hi,
Great, keep us updated.
Hi,
Hello, I understand that you want to develop your own theme. For that, I recommend you to read this document first. Then you can develop your own theme by taking inspiration from existing themes. ABP does not impose any restrictions on this. For example, below you can see the dependency of the public website on the LeptonX theme. After developing your own theme, you can remove LeptonX and add your own theme in this way.
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
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);
}
}