Hi,
could you please refer this https://support.abp.io/QA/Questions/245/ABP-LIC-0008---License-check-failed-for-'XXXXX' https://support.abp.io/QA/Questions/69/ These are similar kind of issues
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
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.
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:-
appsetting.json
"Redis": { "Configuration": "localhost,ssl=True,abortConnect=False" },