Hello,
Please try the following steps and check if the issue is resolved:
abortConnect=false
in appsettings.json.
An error occurred using the connection to database 'sqldb-myapp' on server 'sql-myserver.database.windows.net'.
In your connection string, try addingMaxPoolSize=200
and check if it resolves the issue.Thank you.
Hello
Can you check this similar issue https://abp.io/support/questions/7742/apiabpapplication-localization-and--apiabpapplication-configuration-error-every-5-minutes-on-APIHost-server
Thank you.
Hello ,
Please share your project support@abp.io email along with ticket no.
Thanks,
Hello ,
Ensure that the new custom domains are added to the Redirect URLs
column in OpenIddictApplications
table.
appsettings.json
files across all services and redeploy them.appsettings.json
files in the Kudu console
of Azure Web Apps.Thank you.
please check once this link https://github.com/abpframework/abp/issues/8019#issuecomment-796776155
Hello
a composite key using LoginProvider
and ProviderKey
, which are meant to be the primary keys for IdentityUserLogin
:
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<IdentityUserLogin>(b =>
{
b.HasKey(l => new { l.LoginProvider, l.ProviderKey });
});
}
Try to this code and check it's work or not ?
Thank you.
Hello
I think this is same with https://abp.io/support/questions/1271/Add-relation-between-AbpUser-to-My-Table#answer-0ef35452-cfbd-16ad-44c0-39fc57ccd99e
Can you check?
Thank you.
Hello ,
remember me
the cookies will be valid for 14 days by default.if set rememebr me cookie Expire date will show.
without set remember me session
will be invalid after close the browser
For more information you can check this similar issue https://abp.io/support/questions/5231/Reducing-the-Remember-Me-time?CurrentPage=1#answer-3a0bd55f-37b2-1f28-914f-7b52bbf16f87
you can add time as per your requirement.
Thank you.