Activities of "liangshiwei"

A connection could not be established because the target computer refused the connection

Hi,

Did you start the backend (Authserver & HttpAPI.Host)?

Further how to create modules and identity projects in same solution?

Do you mean identity pro, saas, audit log etc..?they are pre-installed

Hi,

Sorry, I'm late, could you provide the full steps to reproduce the problem? I will check it.

ok

Because you are using HTTP, the XSRF-TOKEN cookie required HTTPS.

If you want to use HTTP, you can try:

Configure<AbpAntiForgeryOptions>(options =>
{
    options.TokenCookie.SecurePolicy = CookieSecurePolicy.None;
});

I could not reproduce the problem.

Also, when a 'forgot password' email is sent with a confirmation link, the link generated always points back to the domain.net URL instead of the tenant1.domain.net URL that was used when clicking the 'Forgot Password' link.

You can update the SelfUrl, for example:

"SelfUrl": "https://{{tenantName}}.localhost:44327",

Is there any way to get all ratings for every product

You can use the IRatingRepository to get ratings: https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Ratings/IRatingRepository.cs You can also write your own query code using Repository.

I don't need to use undo rating, How can I hide it? there is any setting for this widget!

No such settings, but you can use JS to remove the undo HTML element.

Hi,

What kind of redirect, can you explant it in detail?

Hi,

ABP abstracts multi-tenancy, you can implement the IMultiTenant interface for your entity directly.

ABP microservice template has already done the necessary configuration, I think it should be work for you.

Hi,

Is there any document that clarifies how to add multiple ABP applications using the same authentication server?

No such document, but you can check: https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice

And is there an updated document on how to add the identity server module to the solution, in this document it says: "Identity Server is pre-installed in the startup templates. So, no need to manually install it.", and this is not correct.

Yes, but since 6.0, the template uses openIddict instead of IdentityServer.

The documentation for microservice template, but some content is useful:

  • https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice#authserver-configuration

You can create a new project with --separate-auth-server option. (client app)

  • You can safely delete the AuthServer project
  • Update the AuthServer configuration in the appsettings.json file of HttpApi.Host project
  • Update oAuthConfig configuration in the environment.ts
  • Remove modules you don't need
Showing 4301 to 4310 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 November 04, 2025, 06:41