hi
Try to set the current Scheme to https in the pipeline.
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
var app = context.GetApplicationBuilder();
var env = context.GetEnvironment();
app.Use((ctx, next) =>
{
ctx.Request.Scheme = "https";
return next();
});
hi
The antiforgery token could not be decrypted.
This is usually the key of ASP.NET Core Data Protection has changed.
You can try to clear the cookies or test it on browser's private mode.
https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-7.0
导致CPU都在写日志,程序根本跑不动
一般来说写日志不会影响性能.
不过你可以覆盖这种行为.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo/Abp/AspNetCore/Mvc/Client/RemoteLocalizationContributor.cs#L159
Thanks. I will check it online first.
hi
About pfx file
https://support.abp.io/QA/Questions/4662/Need-help-to-create-authserverpfx-file
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?