skip to Main Content

The site workins fine, but when I try to Add order or Login/Registration at the time I get timeout error:

An unhandled exception occurred while processing the request.
BadHttpRequestException: Reading the request body timed out due to data arriving too slowly. See MinRequestBodyDataRate.
Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http.Http1MessageBody.PumpAsync()

2

Answers


  1. Most probably it’s your database connectivity. Check your configurations in appsettings.json and checking if your database is accessible using the provided configurations

    Login or Signup to reply.
  2. Its because of memory allocated by your hosting provider. You need to change session storage In-Proc.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search