Activities of "isteer"

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

Hello Team,

Shared logs above over email, please confirm if you received logs, shared links of all URLs for staging and production.

Also share the email where I need to send logs

Sure, which site logs should I send, staging one or production one?

In that case how we can get source code of chat module in our project?

Showing 31 to 40 of 85 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 05:21