Fix "Disk Quota Exceeded" on Hosting
Disk quota exceededquota limit reachedcan't write file"Disk quota exceeded" means your account hit its allotted space — even if the server's disk has room. Uploads, emails and databases all fail until you free some. Here's how.
Quota vs full disk
This isn't the whole server being full — it's a per-account limit. The fix is to free space within your account or raise the quota (your host controls the limit).
Find what's using your quota
In your home directory, find the biggest folders — often it's email, backups, logs or caches:
du -sh ~/* ~/mail 2>/dev/null | sort -h
The usual space hogs
- Email — large mailboxes and old attachments (often the biggest).
- Backups — site/database backups you forgot to remove.
- Logs & caches — runaway error logs or a caching plugin.
- Old uploads — media you no longer use.
On shared hosting, your mailboxes usually count toward the same quota as your files. A full inbox can stop your website writing — clear old mail or archive it.
Quota = your account limit, not the disk. Clear email/backups/logs, or ask your host to raise the quota.
More space, fewer limits
Our hosting plans give you generous NVMe storage with room to grow — DDoS protection included.
Frequently asked questions
What does "Disk quota exceeded" mean?
Your hosting account reached its allotted disk space — separate from the server's overall disk. Until you free space (or the limit is raised), writes like uploads, emails and database changes fail.
How do I see what's using my quota?
Use du -sh ~/* to list your biggest folders. On shared hosting the disk-usage tool in your panel breaks it down — email, backups, logs and caches are the usual culprits.
Does email count toward my disk quota?
Usually yes on shared hosting — mailboxes share the same quota as your files. A large inbox can fill your quota and stop your website from writing data.
Related articles
Fix SSH "Connection refused" / "Connection timed out"
SSH "connection refused" vs "timed out" — what each means and the exact steps to fix them.
Read fix Linux & VPSFix "Permission denied" on Linux (chmod & chown Explained)
"Permission denied" on a script or file? Understand chmod/chown and fix it the right way.
Read fix Linux & VPSHow to Check CPU, RAM & Disk Usage on a Linux Server
The essential commands to check CPU, RAM and disk on Linux — and find what's eating them.
Read fix