Learn More, Pay Less!
Limited Time Offer!

Activities of "Anjali_Musmade"

Hello ,

I have tried to reproduce this issue on my side, but I cannot reproduce it. Once confirm which Base class you are use Please provide me some more steps to reproduce this issue.

Thank you.

Hello , If you want to hide that name you can write custom css in your angular styles.scss file

.lpx-menu-item-link.ng-tns-c4125907324-111.ng-star-inserted{
    display: none;
  }

Thank you.

Hello,

Please try the following steps and check if the issue is resolved:

  • In Redis, add abortConnect=false in appsettings.json.
  • There is another error: An error occurred using the connection to database 'sqldb-myapp' on server 'sql-myserver.database.windows.net'. In your connection string, try addingMaxPoolSize=200and 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.

  • Make sure you are updating appsettings.json files across all services and redeploy them.
  • Clear the cache and restart the Azure Web Apps.
  • Verify the 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 ,

  • If you can set 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

  • please check this for auth cookie expire time https://github.com/abpframework/abp/blob/1863a619f172634b2eb4842f0c241c40a9642c91/docs/en/Modules/OpenIddict.md?plain=1#L425

you can add time as per your requirement.

Thank you.

Showing 1 to 10 of 1339 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on February 06, 2025, 11:50