Hi,
Thanks for the demo, I will check it.
Hi,
I will check it , thanks.
Hi,
I have to try testing with a new startup template, but can't reproduce the problem, can you provide full steps? thanks.
Hi,
1 - How we can implement a hangfire server in an isolated Abp app and run this app on multiple instances?
Hangfire natively supports multi-instance servers, you only need to deploy multiple application instances.
2- How it can handle and access the tenant databases?
Example:
var tenants = await _tenantRepository.GetListAsync();
foreach(var tenant in tenants)
{
using(CurrentTenant.Change(tenant.Id))
{
//handle and access the tenant databases...
}
}
Hi,
1/ dntcaptcha not working on the existing Abp Project
Can you share the error logs?
2/ Unable to find package Volo.Abp.EntityFrameworkCore.Oracle with version (>=5.0.0)
See https://github.com/abpframework/abp/issues/10957, we will publish the Nuget Package soon.
Hi,
Can you try using IRemoteStreamContent
.
public void Save(IList<IRemoteStreamContent> uploadFiles)
{
.....
}
Hi,
We plan to introduce dynamic claims to solve the problem, see https://github.com/abpframework/abp/pull/8676
For now, you can refer this: https://support.abp.io/QA/Questions/2090/How-to-clear-cache-for-features
Hi,
Please double-check the URL in the source project environment and make sure your application is up and running.
See https://docs.abp.io/en/abp/3.1/CLI#generate-proxy
Generates Angular service proxies for your HTTP APIs to make easy to consume your services from the client side. Your host (server) application must be up and running before running this command.