Activities of "Anjali_Musmade"

Hi,

Could you please try adding authserver.pfx certificate in Certificates Section of Azure Web App And Add this Application Setting under Configuration of Azure Web App - Name: WEBSITE_LOAD_CERTIFICATES Value: *

Hi,

abp.io uses claims-based authentication and authorization. please read more here https://learn.microsoft.com/en-us/aspnet/core/security/authentication/?view=aspnetcore-7.0#authentication-concepts you can find the code which works with asp.net core https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Authorization/Volo/Abp/Authorization/AuthorizationInterceptor.cs https://github.com/abpframework/abp/blob/dev/modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml.cs

Just FYI, ABP itself doesn't directly provide a "Session Management" module as a standalone feature, it's likely that it leverages the session management capabilities provided by the underlying ASP.NET Core framework.

Please check similar ticket for reference https://support.abp.io/QA/Questions/2234/How-to-maintain-session-information-in-ABP-framework

Answer

You may check this https://docs.abp.io/en/commercial/latest/modules/chat#configuration for chat module configuration.

Hi,

For time being you can add this code

export class AppComponent implements AfterViewInit{

  ngAfterViewInit(): void {

    const images = document.querySelectorAll('img');

    images.forEach(image => {

      const currentAlt = image.getAttribute('alt');

      if (!currentAlt || currentAlt.trim() === '') {

        image.setAttribute('alt', 'Image');

      }

    });

  }

}

This issue will be fixed in the next release.

Hi,

You can go through these documentation https://docs.abp.io/en/abp/latest/Entity-Framework-Core#loading-related-entities https://docs.abp.io/en/abp/latest/Entity-Framework-Core#repository-withdetails https://docs.abp.io/en/abp/latest/Entity-Framework-Core#repository-get-find-methods https://docs.abp.io/en/abp/latest/Entity-Framework-Core#explicit-lazy-loading https://docs.abp.io/en/abp/latest/Entity-Framework-Core#ensurepropertyloadedasync-ensurecollectionloadedasync https://docs.abp.io/en/abp/latest/Entity-Framework-Core#lazy-loading-with-proxies

Hi,

we will check it.

Answer

Hi, Have you refer this -> https://support.abp.io/QA/Questions/1315/How-can-I-set-default-language-to-FI please check if it helps you.

Hi,

Could you please try following steps:-

  1. Clean solution
  2. Rebuild solution Or please Check connection string? Or please try in Host file appsetting.json "Redis": { "Configuration": "localhost,ssl=True,abortConnect=False" },

Hi, I think your Authorization URL is having http instead of https. Please try after replacing it by https.

Hi, I am also using Angular UI, it works at my end. Could you please check your solution explorer at backend it has solution ***.HttpAPI.Host at the end of list.

Showing 1261 to 1270 of 1341 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 08, 2025, 09:55