hi
Do you have multiple tenants?
Please share the setting values in AbpSettings tables.
Thanks.
hi
Can you share a high-quality screenshot?
What is your ABP version and UI page?
Thanks.
hi
The latest CLI is targeted at net10.0. You can consider installing the NET 10.0 SDK.
https://www.nuget.org/packages/Volo.Abp.Studio.Cli
Or you can try to create a globaljson file
> cd TestFolder
TestFolder > dotnet new globaljson --sdk-version 8.0.401
TestFolder > dotnet --version
8.0.401
TestFolder > dotnet tool install --global Volo.Abp.Studio.Cli --version 2.1.9
hi
The LeptonX version is different from ABP
ABP version - 5 = LeptonX version
eg: abp is 10.0.0 then leptonx is 5.0.0
Thanks.
hi
We are using a microservices-based architecture.
The ABP microservice template already includes a Docker file for each application. If your microservice template was created earlier, you can create a new one and check the Docker file in it.
Thank you.
hi
Add the code to your authserver project. I think the issue will be fixed, so no need share logs. : )
public override void ConfigureServices(ServiceConfigurationContext context)
{
context.Services.AddRazorPages(options =>
{
options.Conventions.AddPageApplicationModelConvention("/Account/Login", model =>
{
model.Filters.Add(new IgnoreAntiforgeryTokenAttribute());
});
});
}
hi
I wasn't able to run your application locally. I'll check the logs first.
Please enable debug and verbose logs, https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.