HTTP 507 Insufficient Storage is a WebDAV status code indicating the server cannot store the representation needed to complete the request. The server ran out of disk space or storage quota.
The server's disk or the user's storage quota is full and cannot accept more data.
The database has reached its storage limit and cannot accept new records.
Verify available disk space on the server.
df -h
Delete old files, logs, or temporary data to free up disk space.
du -sh /var/log/* | sort -rh | head -10
Expand the disk volume or increase the user's storage quota.