hi
Hi
Please try to set the Mode of AbpBundlingOptions as None for your https://sbc.host.dev.xxx.com/ project and re-publish it online.
I will continue to check it.
Thanks
Configure<AbpBundlingOptions>(options =>
{
options.Mode = BundlingMode.None;
});
hi
I can however see the files uploaded by different users:
This is by design.
Could this be because I'm using Blazor Server rather than WASM?
Yes, You can see the API request on mvc UI.
I've also noticed a bug, in which if you re-open the upload box after uploading you get a shadow entry still:
We will check this.
Thanks. The logs didn't help much, can you share a username and password to reproduce it online?
liming.ma@volosoft.com
hi
I added the chat module to my project, enabled chat
Did you depend on the ChatSignalRModule
?
Can you share your steps?
hi
Can you share the logs of API and auth server?
liming.ma@volosoft.com
hi
You can generate a pfx
and publish it to auzre. Thats all.
There is not much difference between deploying abp and other asp net core applications.
https://docs.abp.io/en/abp/latest/Deployment/Index
For 3,4,5 please open separate questions. Thanks.
hi
Separate tenant schema is means:
This solution configured so it uses two database schema;
In this way, dedicated tenant databases do not have host-related empty tables.
To make this possible, there are two migrations DbContext
in the EntityFrameworkCore
project. So, you need to specify the DbContext
when you want to add new migration.
When you add/change a multi-tenant entity (that implements IMultiTenant) in your project, you typically need to add two migrations: one for the default DbContext and the other one is for the tenant DbContext. If you are making change for a host-only entity, then you don't need to add-migration for the tenant DbContext (if you add, you will get an empty migration file).
hi
You can check this document.
https://docs.abp.io/en/abp/latest/Entity-Framework-Core https://docs.abp.io/en/abp/latest/Entity-Framework-Core#replace-other-dbcontextes
hi
Please share the logs of your app.
Maybe it can't handle the cancel event
https://github.com/dotnet/aspnetcore/blob/1b15d0e92f139d853b5a1b740cd571d9d08e672f/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectHandler.cs#L789