206206 Partial Content
The server is delivering only part of the resource due to a Range header sent by the client.
413The request body exceeds the size limit configured on the server.
The uploaded file or request payload exceeds the maximum size allowed by the server. This limit is typically set in the web server config (e.g., nginx client_max_body_size, Apache LimitRequestBody) or application framework.
Reduce the size of the request body. Compress files before uploading. If you control the server, increase the body size limit. For large files, implement multipart/chunked upload.
// Uploading a file larger than server allows
const form = new FormData(); form.append('file', hugeFile);206The server is delivering only part of the resource due to a Range header sent by the client.
410The resource is no longer available and has been permanently removed. Unlike 404, this indicates intentional removal.
500The server encountered an unexpected condition that prevented it from fulfilling the request.
411The server requires a Content-Length header in the request but none was provided.
102The server has received and is processing the request, but no response is available yet (WebDAV).
423The resource being accessed is locked and cannot be modified (WebDAV).