"Your storage is full, files cannot be updated or synced anymore!" error after upgrading to 24.0.7

Nextcloud version (eg, 20.0.5): 24.0.7
Operating system and version (eg, Ubuntu 20.04): Raspberry pi Linux 5.10.103-v8+ aarch64
Apache or nginx version (eg, Apache 2.4.25): Apache 2.4.38
PHP version (eg, 7.4): 8.1.13

The issue you are facing:

  • Error message notification on home page: “Your storage is full, files cannot be updated or synced anymore!”
  • storage quota indicates full with actual storage value (40.8/40.8GB)
  • file download is possible
  • file upload is impossible
  • changing available quota in Settings>Users menu don’t solved

Is this the first time you’ve seen this error? (Y/N): Y

Steps to replicate it:

  1. Updated OS
  2. Update NC to 24.0.7 with the updater, no error during update process
  3. restarted Apache server

The output of your Nextcloud log in Admin > Logging:

*[webdav] Fatal: Sabre\DAV\Exception\InsufficientStorage: Insufficient space in /InstantUpload/Camera, 1570495 required, 0 available at <<closure>>*

*0. /var/www/nextcloud/apps/dav/lib/Connector/Sabre/QuotaPlugin.php line 138*
*   OCA\DAV\Connector\Sabre\QuotaPlugin->checkQuota()*
*1. /var/www/nextcloud/3rdparty/sabre/event/lib/WildcardEmitterTrait.php line 89*
*   OCA\DAV\Connector\Sabre\QuotaPlugin->beforeMove()*
*2. /var/www/nextcloud/3rdparty/sabre/dav/lib/DAV/CorePlugin.php line 603*
*   Sabre\DAV\Server->emit()*
*3. /var/www/nextcloud/3rdparty/sabre/event/lib/WildcardEmitterTrait.php line 89*
*   Sabre\DAV\CorePlugin->httpMove()*
*4. /var/www/nextcloud/3rdparty/sabre/dav/lib/DAV/Server.php line 472*
*   Sabre\DAV\Server->emit()*
*5. /var/www/nextcloud/3rdparty/sabre/dav/lib/DAV/Server.php line 253*
*   Sabre\DAV\Server->invokeMethod()*
*6. /var/www/nextcloud/3rdparty/sabre/dav/lib/DAV/Server.php line 321*
*   Sabre\DAV\Server->start()*
*7. /var/www/nextcloud/apps/dav/lib/Server.php line 358*
*   Sabre\DAV\Server->exec()*
*8. /var/www/nextcloud/apps/dav/appinfo/v2/remote.php line 35*
*   OCA\DAV\Server->exec()*
*9. /var/www/nextcloud/remote.php line 170*
*   require_once("/var/www/nextcl ... p")*

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'instanceid' => '***',
  'passwordsalt' => '***',
  'secret' => '***',
  'trusted_domains' => 
  array (
    0 => 'nextcloud.ed***-g***.com',
    1 => '192.168.1.93',
    2 => 'localhost',
  ),
  'datadirectory' => '/mnt/al***/Nextcloud/data',
  'overwrite.cli.url' => 'https://nextcloud.ed***-g***.com/',
  'dbtype' => 'mysql',
  'version' => '24.0.7.1',
  'dbname' => 'nextcloud***',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'nextclou***',
  'dbpassword' => '***',
  'installed' => true,
  'mail_smtpmode' => 'smtp',
  'mail_smtpsecure' => 'ssl',
  'mail_sendmailmode' => 'smtp',
  'mail_smtphost' => 'authsmtp.securemail.pro',
  'mail_smtpport' => '465',
  'mail_from_address' => 'nextcloud',
  'mail_domain' => '***rd-g***.com',
  'twofactor_enforced' => 'false',
  'twofactor_enforced_groups' => 
  array (
  ),
  'twofactor_enforced_excluded_groups' => 
  array (
  ),
  'token_auth_enforced' => 'false',
  'check_for_working_htaccess' => 'true',
  'mysql.utf8mb4' => 'true',
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'nextcloud@e***-g***.com',
  'mail_smtppassword' => '***',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'maintenance' => false,
  'theme' => '',
  'loglevel' => 2,
  'app_install_overwrite' => 
  array (
    0 => 'spreed',
    1 => 'impersonate',
    2 => 'workflow_pdf_converter',
  ),
  'mail_smtpauthtype' => 'LOGIN',
  'updater.release.channel' => 'stable',
);