Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 862 Bytes

File metadata and controls

29 lines (20 loc) · 862 Bytes

408 Request Timeout

The server would like to shut down this unused connection.

ℹ️ Details

This response is sent on an idle connection by some servers, even without any previous request by the client. It means that the server would like to shut down this unused connection.

💡 Common Use Case

Slow internet connection causing a request to take too long to arrive at the server.

🔧 How to Fix / Handle

Check network interaction speed. If you are uploading a large file, ensure the server timeout is high enough.

💻 Code Example

HTTP/1.1 408 Request Timeout

🖼️ Visual

408 Status Code Image

🔍 Technical Info

  • Code: 408
  • Category: Client Error

📖 Read more on MDN


🔙 Back to List