hi
ABP 8.0 has the LDAP External Login Provider feature.
https://abp.io/docs/commercial/8.0/modules/identity/ldap
hi
Please remove the string from input if you don't want to set connection string.
Try this:
{
"name": "TestingTenant",
"editionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"activationState": 0,
"activationEndDate": "2025-06-09T04:25:34.834Z",
"editionEndDateUtc": "2025-06-09T04:25:34.834Z",
"adminEmailAddress": "TestingTenant@gmail.com",
"adminPassword": "Satya@123"
}
hi
Please enable the debug logs and share the logs for your slow HTTP request..
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
hi
You can clear Styles from LeptonXThemeOptions, and add a light style.
Configure<LeptonXThemeOptions>(options =>
{
options.Styles.Clear();
options.Styles[LeptonXStyleNames.Light] = new LeptonXThemeStyle(L("Theme:" + LeptonXStyleNames.Light), "bi bi-sun-fill");
});
private static LocalizableString L(string key)
{
return LocalizableString.Create<LeptonXResource>(key);
}
hi
I use local.test as a domain and you need to change it below:
test.local.test test is the tenant name.
public class CookieHandler : DelegatingHandler, ITransientDependency
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
request.SetBrowserRequestCredentials(BrowserRequestCredentials.Include);
return base.SendAsync(request, cancellationToken);
}
}
hi
AddVirtualJson("/Localization/Test")
See https://abp.io/community/articles/understanding-the-embedded-files-in-abp-framework-nsrp8aa9#gsc.tab=0