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
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
Can you share a test project with me? I will check it.