Activities of "liangshiwei"

Hi,

There are too many cookies. This is an external login mechanism that stores all data in cookies.

You can try using OnTicketReceived to delete unnecessary claims to reduce cookie size.

.AddOpenIdConnect(....,
options =>
{
    options.Events.OnTicketReceived += ....
});

can you share the package.json and yarn.lock files?

It looks like the request is carrying too many cookies or other information, you can try to change the webconfig

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <!-- Increase max request length in KB -->
    <httpRuntime maxRequestLength="51200" /> <!-- 50 MB -->
  </system.web>
  
  <system.webServer>
    <security>
      <requestFiltering>
        <!-- Increase max content length in bytes -->
        <requestLimits maxAllowedContentLength="52428800" /> <!-- 50 MB -->
      </requestFiltering>
    </security>
  </system.webServer>
</configuration>

Hi

Can you try to clear redis cache?

2025-01-13 23:30:10 [04:30:10 INF] Access token file does not exist

I think because of the Access token file does not exist, please make sure they are in the container

Hi

Could you share a test project with me? I will check it. thanks. shiwei.liang@volosoft.com

Hi,

to change the logo to change the title

You can change them via YourProjectNameBrandingProvider https://abp.io/docs/latest/framework/ui/mvc-razor-pages/branding

to remove register

You can disable self-registration

to remove forget password password

1 You can override the login page to remove forget password password

  • Here is the document to explain how to override UI: https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface
  • You can download the source code via abp suite

2 Override the forget password page model

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(ForgotPasswordModel))]
public class MyForgotPasswordModel : ForgotPasswordModel
{
    public override Task<IActionResult> OnGetAsync()
    {
        return Task.FromResult<IActionResult>(NotFound());
    }

    public override Task<IActionResult> OnPostAsync()
    {
        return Task.FromResult<IActionResult>(NotFound());
    }
}

Hi,

It makes sense, I will ask the ABP studio team

Hi,

We didn't change the license check code, you can check this: https://abp.io/support/questions/5856/Unable-to-Apply-License-Code-for-Docker-Container-to-run-in-Debug-Mode#answer-3a0e07fe-d549-6d71-fb2c-f893ea965be1

Answer

After the updated certificate, you can try to update the password and redeploy the project.

Showing 281 to 290 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