Activities of "liangshiwei"

Hi,

Yes, you can use docker to deploy Redis in the instance.

Actually, Redis is not necessary but the distributed cache.

There are many options:

  • Memory distributed cache: Highest performance, but not suitable for distributed or microservice applications
  • Redis distributed cache: Good performance
  • SqlServer distributed cache: General performance
  • NCache distributed cache: Highest performance.

You can check the document: https://learn.microsoft.com/en-us/aspnet/core/performance/caching/distributed?view=aspnetcore-7.0#establish-distributed-caching-services

Hi,

This error has nothing to do with ABP.

ABP also provides documents, you can refer to: https://docs.abp.io/en/commercial/latest/startup-templates/application/deployment-docker-compose?UI=NG&DB=EF&Tiered=Yes#running-docker-compose-on-localhost

Basically, you need a valid HTTPS certificate. You can create a local certificate for testing:

And specify the certificate path and password in the environment variable.

Hi,

The Auth server needs some NPM packages, you need to restore them before publishing the project.

ok, I received the email.

Hi,

You can consider specifying autosave to create an entity.

_myRepositpry.InsertAsync(..., autoSave: true)

Hi,

Sorry, but there is no such filter.

You can do something like this: https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#publishing-events-inside-entity-aggregate-root-classes

public class MyEntity : AggregateRoot<Guid>
{
    public bool IsActive { get; private set; }
    
    public void ChangeIsActive(bool isActive)
    {
        IsActive = isActive;
        
        AddDistributedEvent(....);
    }
}

Hi,

You should add a dynamic permission group and add sub-permissions to it.

For example:

For MVC Tired, the web project loads permissions from remote(HttpApi.Host).

You need to empty the Redis cache(or restart the HttpApi.host project), wait for 30 seconds, and you will see the dynamic permissions.

Hi,

I can't reproduce the problem. Here is my test project source code: https://github.com/realLiangshiwei/Qa5697

Hi,

You can override the register page.

Here is the document: https://docs.abp.io/en/abp/latest/UI/AspNetCore/Customization-User-Interface

Because you are using the Auth Server Separated, you can customize the registration page in the .AuthServer project

Volo.Abp.AbpException: Could not find file '/libs/abp/core/abp.css'

Hi,

You can try abp install-libs to restore the NPM packges.

Showing 3401 to 3410 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.