Hi,
we have a video ABP Community Talks 2022.1 — Microservice Development: https://www.youtube.com/watch?v=TpyROlTBc50
Hi,
you need to add module dependency
[DependsOn(typeof(AbpBlobStoringModule),)]
public class YourApplicationModule : AbpModule
Hi,
could you share the server full error logs?
you can remove MultipleActiveResultSets
Similar issues https://github.com/abpframework/abp/issues/19632#issuecomment-2311275722
Can I get support in Chinese?
可以
Hi,
please make sure it is the root folder, not the wwwroot folder.
Hi,
you can check the document https://abp.io/docs/latest/deployment/configuring-openiddict
Hi,
I have provided the simple code here
and i see there is an error message: Antiforgery token validation failed. The required antiforgery request token was not provided in either form field "__RequestVerificationToken" or header value "RequestVerificationToken"
.
you can add __RequestVerificationToken
to the form : https://learn.microsoft.com/en-us/aspnet/core/blazor/forms/?view=aspnetcore-8.0#input-components-and-forms
<form method="post" data-ajaxForm="false" action="/Payment/GatewaySelection" id="Form">
<AntiforgeryToken />
</form>