reported at https://support.abp.io/QA/Questions/1126#answer-aacb29ac-c321-fde0-8f2b-39fc7e37b38a
Create new tenant not creating admin user
ABP Framework version: v4.3.0 (Upgraded from 4.2.1) UI type: Angular DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): no Exception message and stack trace: No error is thrown. Steps to reproduce the issue: Goto SaaS-->Tenants-->New Tenant Create a new tenant with the admin user and pass entered. Save
It looks like the tenant is created but the admin user is not added. In the database the tenant is added but there is no user. Potentially a problem in ObjectExtensions or TenantAppService?
@scott7106:
The issue is more pervasive than Chris reported. None of the identity components are created for the new tenant. This includes the admin user, the default admin role and the initial permission grants needed for the new admin role.
Vijay / rxadvance.com asks:
Unable to disable the local login
Email confirmation email not coming.
Email verification code not coming
Verification Code – options not asking weather email/phone type?
Also, I can’t able find the method to custom claims mapping while inserting the user For example, from Azure we need to insert Name, Surname. I am not able set the claims from Azure to User Table. This very critical we are moving to production very soon.
some of delete function not working.
I do notice that we don’t have any backend tables for permission/localization master data. So how we can manage the permission for remote/client applications which out of side Identity Manager. Our flow
This is issue for us critical as of now. We have tried uncheck the client application level, that is not also working. Please help us ASAP. On top of all setting options not saving from UI. If changed from DB it is not showing until I re-cycle the application pool.
Our goal – not enable the self registration and local login for few clients.. however, we need enable self-registration for external clients/apps. It is separated application were read from appsetting or in memory (stratup page). But I did not see any options.
Vijay P. Nallala asks:
Can you please suggest – how we can set the custom guid as “object Type” in Mongo DB
Class
Public class TestClass :Entity<string>
{
public string Id { get; set};
public string FirstName { get; set};
}
Repo- ModelBinding
modelBuilder.Entity<TestClass>(b =>
{
//[BsonRepresentation(BsonType.ObjectId), BsonElement("_id")]
b.CollectionName = "TestMember";
b.BsonMap.MapProperty(x => x.Id).SetElementName("_id");
//TODO SET THE BsonType as ObejctId “NOT AS BINARY”
});
Thanks Vijay
I would like to change the database table prefix for IdentityServer.
To update your version to v4.3.x for both ABP CLI and ABP Suite run the following command
dotnet tool update -g Volo.Abp.Cli --version 4.3.0-rc.1
abp suite update --preview
or
Run this PowerShell script to update both the CLI and Suite to the latest including the preview versions.
v4.3 Preview ABP Framework Version Notes https://blog.abp.io/abp/ABP-Framework-4.3-RC-Has-Been-Published
v4.3 Preview ABP Commercial Version Notes https://blog.abp.io/abp/ABP-Commercial-4.3-RC-Has-Been-Published
From 4.x to 4.3 Migration Guide https://docs.abp.io/en/commercial/4.3/migration-guides/v4_3
What's the default credentials of the ABP Framework login page?
@huseyin.cakirli reports an issue about working Redis with password keyword.
ABP works with Redis with server-ip:port string.
but when we use the following formats it doesn't connect
redis_server_ip:redis_port,password=REDIS_PASSWORD_HERE
or
redis_password@redis_server_ip:redis_port
reported here https://support.abp.io/QA/Questions/287#answer-0eb2a565-8f43-115b-3e34-39fa7f9c1875