Activities of "liangshiwei"

Hi,

Try abp new ProjectName -u angular -v 4.2.2

Hi,

You can check this: https://github.com/abpframework/abp/blob/dev/modules/tenant-management/src/Volo.Abp.TenantManagement.Application/Volo/Abp/TenantManagement/TenantAppService.cs#L62

Hi,

Do you mean IdentityServer module source code? If so, you can try abp get-source Volo.Identityserver.Ui -v 4.2.2

Hi,

You can try custom a grant type to disable the tenant filter.

see: https://identityserver4.readthedocs.io/en/latest/topics/extension_grants.html

Volo.Abp.Commercial.SuiteTemplates Volo.Abp.Commercial.Core.csproj Volo.Abp.AspNetCore.Mvc.UI.Theme.Commercial.csproj

These packages are not included in the commercial modules.

I'm building the solution from source codes. If I don't need to include these packages/source code, how can I remove?

You can completely remove the unneeded code from the solution

Hi,

Can you try to add Volo.Abp.Caching.StackExchangeRedis and Microsoft.AspNetCore.DataProtection.StackExchangeRedis package to the Web project.

[DependsOn(
   ........
   typeof(AbpCachingStackExchangeRedisModule)
)]
public class ...WebModule: AbpModule
{
     public override void ConfigureServices(ServiceConfigurationContext context)
     {
            ................
            Configure<AbpDistributedCacheOptions>(options =>
            {
                options.KeyPrefix = "MyProjectName:";
            });  
            
             var dataProtectionBuilder = context.Services.AddDataProtection().SetApplicationName("MyProjectName");
            if (!hostingEnvironment.IsDevelopment())
            {
                var redis = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
                dataProtectionBuilder.PersistKeysToStackExchangeRedis(redis, "MyProjectName-Protection-Keys");
            }   
     }
}

appsettings.json

{
  .....
    "Redis": {
    "Configuration": "127.0.0.1"
  }
}

Hi,

I will check it out.

Hi,

We haven't started this work yet, I will let you know when the document is available.

When I try to open this: https://auth.folosun.org:44341/ the logs.txt, is empty. It seems not start the identityserver.

It seems like related to Web Server, you can check IIS logs.

Hi,

Yes, it seems related to the Redis server. may I ask what Redis version are you using?

You can check this (This is not an official release and is recommended for development and testing):

https://github.com/tporadowski/redis/releases

Showing 4681 to 4690 of 6045 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06