Activities of "isteer"

Answer

Hello @liangshiwei Can we connect now for testing it together on zoom call?

Answer

Hello,

Our users currently working on the production site. We won't be able to do any changes on the production server.

I will sent an email or send a message here when we have the system for testing and redeployments.

Thanks,

Answer

Hello,

Going for lunch now, Let me message you post lunch and then you can check on zoom meeting.

Thanks, Let me try and redeploy this and will update you on the impact. Meanwhile can you check the other ticket also where I have posted reply.

Thanks, Just need to add in appsettings part, no need to change in configuration side of code, right?

 Configure<RedisCacheOptions>(options =>
        {
            options.InstanceName = "Production";
        });
        var dataProtectionBuilder = context.Services.AddDataProtection().SetApplicationName("GemsProduction");
        if (!hostingEnvironment.IsDevelopment())
        {
            var redis = ConnectionMultiplexer
              .Connect(configuration["Redis:Configuration"]);
            dataProtectionBuilder.PersistKeysToStackExchangeRedis(redis, "GemsProduction-Protection-Keys");
        }
Answer

Hi, Is this working for you?

Go to IIS Manager.

  • Click on your app.
  • Go to "Handler Mappings".
  • In the feature list, double click on "WebDAV".
  • Click on "Request Restrictions".
  • In the tab "Verbs" select "All verbs" .
  • Press OK.

After following these steps, site is not working at all.

Hello

This needs to be added before we setup applicationname and connection with redis right? Check screenshot and code and confirm please.

 private void ConfigureDataProtection(
        ServiceConfigurationContext context,
        IConfiguration configuration,
        IWebHostEnvironment hostingEnvironment)
    {
        Configure<RedisCacheOptions>(options =>
        {
            options.InstanceName = "Production";
        });
        var dataProtectionBuilder = context.Services.AddDataProtection().SetApplicationName("GemsProduction");
        if (!hostingEnvironment.IsDevelopment())
        {
            var redis = ConnectionMultiplexer
              .Connect(configuration["Redis:Configuration"]);
            dataProtectionBuilder.PersistKeysToStackExchangeRedis(redis, "GemsProduction-Protection-Keys");
        }
    }

Hello,

Which place need to add this code. As can not see this RedisCacheOptions declared or used any of the module pages (Authservermodule, WebModule)

Answer

Hello,

Can not uncheck this WebDAV Publishing feature as using a windows server 2019 windows machine. This feature is disabled by default.

Thanks

Hello Team,

Any updates

Showing 31 to 40 of 98 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13