hi
https://support.abp.io/QA/Questions/3047/Disable-concurrent-user-login
https://github.com/abpframework/abp/issues/12783
We are fixing this.
hi
Can you check this?
https://docs.abp.io/en/commercial/latest/startup-templates/microservice/infrastructure#hosting
Configure<AbpDbConnectionOptions>(options =>
{
options.Databases.Configure("FileManagementService", database =>
{
database.MappedConnections.Add("FileManagement");
});
});
hi
The LDAP move to Idenity pro module from the account module in the new version.
You can download both module source code to check.
We are fixing the download problem now.
You can override the GetProfilePictureAsync method of AccountAppService to provide a fallback solution.
ok, We will check and fix this, and info you if it has been done.
the server cannot access gravatar.com
If so, you cannot set the profile image of a user to use gravatar.
The gravatar feature needs to access the gravatar.com
hi
It working now. Can you retry again?
hi
Please check and share your backend logs.
hi
You need to bootstrap the abp module system in your blazor wasm project.
public class Program
{
public async static Task Main(string[] args)
{
var builder = WebAssemblyHostBuilder.CreateDefault(args);
var application = await builder.AddApplicationAsync<MyProjectNameBlazorModule>(options =>
{
options.UseAutofac();
});
var host = builder.Build();
await application.InitializeApplicationAsync(host.Services);
await host.RunAsync();
}
}
https://docs.abp.io/en/abp/latest/API/Static-CSharp-API-Clients