Activities of "liangshiwei"

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.

Hi,

Did you check the demo? https://github.com/EngincanV/ABP-Syncfusion-Components-Demo/

Showing 3401 to 3410 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 15, 2025, 14:41