Desktop client fails to upload but Android/web/dav work just fine

EDIT doing pretty much anything via cadaver results in 403 (put/mput) or 405 (ls). But I’m pretty sure the permissions on the server are the right ones.

EDIT 2 apologies, my mistake, cadaver does work and I can upload files just fine – and they get synced to the desktop client too!

Nextcloud version: 27.1.1
Operating system and version: macOS 13.5.2
Apache or nginx version: 2.4.57
PHP version: 8.2.11

Is this the first time you’ve seen this error?: Y

Steps to replicate it:

  1. Install server 27.1.1 from scratch, clean install, dockerized (not AIO), verify that the web UI works – it does – and Android app can connect to it and share and download files – yes indeed.
  2. Install desktop client 3.10.0, verify that it can connect to the server
  3. Paste a bunch of files in the shared folder and wait…
  4. The files aren’t being uploaded
  5. Upload a file through Android/web and see it sync through the desktop client correctly.
  6. Try to modify the file via desktop: no success – can only delete, anything else is ignored.

The output of your Nextcloud log in Admin > Logging:

https://drive.google.com/file/d/1avvxW73LKStUNDPbw5eoa1WoYAopuO-G/view?usp=sharing

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

<?php
$CONFIG = array (
  'htaccess.RewriteBase' => '/',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'overwritehost' => 'example.com',
  'overwriteprotocol' => 'https',
  'passwordsalt' => 'somefancysalt',
  'secret' => 'somefancysecret',
  'trusted_domains' =>
  array (
    0 => 'localhost',
    1 => 'example.com',
  ),
  'datadirectory' => '/var/www/html/data',
  'dbtype' => 'pgsql',
  'version' => '27.1.1.0',
  'overwrite.cli.url' => 'https://localhost',
  'dbname' => 'nextcloud',
  'dbhost' => 'nextcloud_db',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'oc_morpheu5',
  'dbpassword' => 'dbpassword',
  'installed' => true,
  'instanceid' => 'ocsx8j6cvh93',
  'mail_from_address' => 'info',
  'mail_smtpmode' => 'smtp',
  'mail_sendmailmode' => 'smtp',
  'mail_domain' => 'example.com',
  'mail_smtphost' => 'mail.example.com',
  'mail_smtpport' => '587',
  'mail_smtpauth' => 1,
  'mail_smtpname' => 'info@example.com',
  'mail_smtppassword' => 'whyisthispasswordincleartext?',

  'loglevel' => 0,

);

The output of your Apache/nginx/system log in /var/log/____:

https://drive.google.com/file/d/14XNnaNIItDS5MWVs9aGKyobHYPWhLdG-/view?usp=sharing

Output errors in nextcloud.log in /var/www/ or as admin user in top right menu, filtering for errors. Use a pastebin service if necessary.

This one again?
https://drive.google.com/file/d/1avvxW73LKStUNDPbw5eoa1WoYAopuO-G/view?usp=sharing

Yeah, the client is not having fun, I think I might file an actual bug at this point…

1 Like