hi
Please add the FileManagementEntityFrameworkCoreModule(Volo.FileManagement.EntityFrameworkCore)
module and config the DbContext.
hi
Can you share a project to reproduce the problem? liming.ma@volosoft.com
hi
ABP makes online license check only in Development environment or when the Debugger is Attached in Visual Studio. When it's in Development environment or Debugger is attached, it's required to login your account via ABP CLI ( abp login {username} )
https://support.abp.io/QA/Questions/817/How-to-delete-current-license-login-session#answer-4cbc8f13-c7f3-84fa-7fc8-39fa2688df13
hi
You can try logout and log in via CLI.
or create a new pro project and copy the AbpLicenseCode
to your project.
HI
You can migrator a new database and then check the tables of OpenIddict.
You need to add all scope names in postman.
hi
I will confirm this with the team
hi
https://commercial.abp.io/faq
We have tried to use access-token.bin without login from abp cli. However, we have no luck to run the DbMigrator. It said cannot connect to license server
Can your computer connect to the abp.io server?
hi
Add this to your web project
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(FormClientProxy), typeof(IFormAppService), typeof(FormClientProxy))]
public class MyFormClientProxy : FormClientProxy
{
protected override async Task<HttpContent> RequestAsync(ClientProxyRequestContext requestContext)
{
requestContext.Action.AllowAnonymous = null;
return await base.RequestAsync(requestContext);
}
}
hi
UseFileSystem
only work for using https://docs.abp.io/en/abp/latest/Blob-Storing
The ABP File Management
required to use Database(Volo.FileManagement.EntityFrameworkCore
).