Hi, I'm upgrading to Abp 5.0.4 (Core + Angular) from 1.5.0. It seems that PasswordComplexityChecker method is gone away, but the password complexity settings are still alive. I've to check my self the password requirements or is a feature still missing from core version?
Thanks
Hi,
is implemented some kind of password expiration? (30 ,60, 90 days ?) I've found only ShouldChangeOnPasswordNextLogin
Thank you Ivano
Ok now I've realized.
TheAspZero code before was in private repository, while now has moved on public repository. Thank you very much @srtrix20.
Thank you very very much @BBakerMMC.
In this moment there are many versions and many things to update and fix. Is difficult find if it's a bug, an error or some wrong implementations. I was looking for a solution since this morning .
Hi @ismcagdas,
I'm sorry but is not what I mean.
I try to explain better: What I need is the source code of the nuget packages like Abp v.2.3.0 that contains public abstract class AbpModule { ....
From AspnetZero github I can download "aspnet-zero-core" that it isn't the source code. Is a template project.
In 3.2.0 version the soluzione Abp.sln contains the source code of AbpModule. I need the same but from 4.3.0 core version.
Thanks
Hi, We are upgrading from AspNetZero 3.2.0 to 4.3.0 (Core + Angular). All code is migrated and compiles, but I have an error when using two context on same database. On 3.2.0 all works fine but now when is made the call on GetUserByIdAsync I've the error: The specified transaction is not associated with the current connection. Only transactions associated with the current connection may be used.
profileRepository is a custom repository. userManager is the standard SolutionName.Authorization.Users.UserManager.
public async Task<UserInfo> GetUserInfo(long id) { var user = await GetUserFromProfile(id); var profile = await GetProfile(id); UserInfo userInfo = new UserInfo(user, profile); return userInfo; }
public async Task<User> GetUserFromProfile(long profileId) { var userId = await profileRepository.GetAsync(profileId); // <- this works var result = await GetUser(userId.UserId); return result; }
public async Task<User> GetUser(long userId) { var user = await userManager.GetUserByIdAsync(userId); // <- this fails return user; }
I've looked at MultipleDbContextDemo but it isn't with EfCore.
What I have to change to resolve this issue ?
Thank you.
Hi,
I'm using the Core version (3.2.0) with angular. We are planning to upgrade to version 4.3.0. I know that is my problem how to make the upgrade, but I need the source code for that. aspnet-zero-core has MyCompanyName.AbpZeroTemplate.sln that I don't think is the source code.
I need what in the 3.2.0 version were Abp.sln and Abp.Zero.sln.
Thank you.
Hi, We are moving from abp 3.2.0 to 4.3.0 core. I've noted the the source code available on github has changed the structure. Which projects and where I have to download in order to have the complete full code ?
GitHub - AspnetZero -> aspnet-zero-core seems a template project and also aspnet-zero. I need what in the first version were Abp.sln and Abp.Zero.sln.
Thanks
Hi, The standard method Authenticate with AuthenticateModel is logged in AbpAuditLogs with a clear text password and this is not good.
I need to change the source code and use [DisableAuditing] attribute or I'm missing some setting ?
Thank you.
MyData is defined in Plugin2. Plugin1 doesn't any reference to Plugin2.