Activities of "maliming"

Answer

hi @gvnuysal

Angular uses client side routing. If you refresh a page (F5) then IIS will handle the request and will not find the requested path and returns a HTTP 404 error. We should configure IIS to redirect all requests to the index.html page (or, to the root path). At the same time, IIS needs to install the URL Rewrite module, please refer to https://www.iis.net/downloads/microsoft/url-rewrite

You can try the following web.config.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <staticContent>
      <remove fileExtension=".json" />
      <mimeMap fileExtension=".json" mimeType="application/json" />
	  <mimeMap fileExtension="woff" mimeType="application/font-woff" />
      <mimeMap fileExtension="woff2" mimeType="application/font-woff" /> 
    </staticContent>
    <!-- IIS URL Rewrite for Angular routes -->
    <rewrite>
      <rules>
        <rule name="Angular Routes" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
            <add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>
Answer

hi @songshuai1986

We will check this, Thanks.

hi dhamel@pulsartrading.com

Please try add new migrations file of EF Core.

Answer

hi @songshuai1986

This is like a network problem, you can try to use proxies for abp.exe and abp-suite.exe.

hi @songshuai1986

This is like a network problem, you can try to use proxies for abp.exe and abp-suite.exe.

hi

You can try custom the AbpResourceOwnerPasswordValidator.

https://github.com/abpframework/abp/blob/dev/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AspNetIdentity/AbpResourceOwnerPasswordValidator.cs#L64

Duplicate of https://support.abp.io/QA/Questions/378/Text-template-management-Integration-in-aspnetzero-project

hi

abp.io is not compatible with aspnetzero ,maybe you can check the source code of the module and try to copy some code. In short, it cannot be used out of the box.

hi

Sorry, there is no example for now. This example may be created when we prepare the microservice startup template.

hi @hungvt

The license of your organization is that Team cannot download the source code. If you need the source code, you can consider upgrading your license.

https://commercial.abp.io/pricing

Showing 10971 to 10980 of 11066 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 October 30, 2025, 06:33