Activities of "balessi75"

Hi @liangshiwei,

AddAppSettingsSecretsJson() is not a method of IConfigurationBuilder, so the change to DbContextFactory didn't work for us.

FYI - Instead, we got it to work by adding the following to the CreateHostBuilder method of Program.cs in the DbMigrator project.

  .ConfigureAppConfiguration((hostContext, builder) =>
            {
                if (hostContext.HostingEnvironment.IsDevelopment())
                {
                    builder.AddUserSecrets<Program>();
                }
            })
           

Thanks @liangshiwei, this worked perfectly

Excellent, thanks @liangshiwei

Thanks, @liangshiwei! This was everything I needed to customize the personal settings area as needed.

Thanks @liangshiwei !

Thanks for looking into this @liangshiwei.

We verified the version numbers and now see the reCAPTCHA check box on the login form. The problem we are still seeing is that if you don't check the box and click to login, an error to check the box is present but the form disappears.

Can you try this when you get a chance? Here is our setup...

We are using the lepton theme instead of the leptonX theme. Could that have something to do with it?

Hi,

Can you share some browser developer tools screenshots?

Hi, I created a new application template in Abp 5.2 with the same options and I confirmed that reCAPCHA works as expected in 5.2. Please advise on working with Abp 7.0.1

Thanks in advance,

@balessi75

Hi,

Can you share some browser developer tools screenshots?

We see this error on the login screen where the reCAPCHA does not show...

hi

https://github.com/abpframework/abp/issues/13755

Thanks as always @maliming!

Showing 101 to 110 of 149 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13