4234xx Client ErrorMedium
HTTP 423 Locked
Defined in RFC 4918
What Does HTTP 423 Mean?
The resource that is being accessed is locked.
Common Causes
- 1WebDAV file locked by another user
- 2Document being edited by someone else
- 3Resource locked for exclusive access
- 4Database record locked during transaction
Impact
- ⚠Cannot edit or modify the resource
- ⚠Must wait for the lock to be released
Ad Space – header
Developer Fix
For web developers and application engineers
- 1Check lock status before attempting modifications
- 2Implement lock timeout handling
- 3Show lock owner and estimated unlock time to user
Server Admin Fix
For system administrators and DevOps engineers
- 1Monitor for stale locks that need cleanup
- 2Implement automatic lock expiration
- 3Provide admin tools to manually release locks
Ad Space – after-fix
Frequently Asked Questions
How do I unlock a locked resource?
Use the WebDAV UNLOCK method with the lock token. If you don't have the token, an administrator may need to remove the lock, or wait for it to expire.
Is 423 only used in WebDAV?
While defined for WebDAV, some APIs use 423 to indicate a resource is locked for editing by another user or process. It is not commonly seen outside of file management and collaborative editing systems.
Related HTTP Status Codes
About the Author
Web Infrastructure Team
Verified against official RFC specifications and real-world server configurations. HTTP status code behavior confirmed across Apache, Nginx, and Cloudflare.