Windows Sync-Client doesn't sync all files (checksum wrong)

I had the same problem with the MacOS client.
Re-upload the data or change the timestamps of the files were not possible actions since the system is in production.

I removed all the checksums and it worked perfectly.

Here how I solved the problem:
UPDATE oc_filecache
SET checksum = ''
WHERE COALESCE (checksum, ‘’) <> ‘’

1 Like