Desktop client 3.4.0 destroys local time stamp and keeps uploading data to server

thx - already did it (occ files:scan --all)

command:unsolvable_file.sh from smtime_fixer_tool_kit still shows:

local::/ncdata//user/files/Privat/Fotos/2015/xxxx/12323_28740383.jpg

Iā€™m on nextlcoud-client 3.4.4 and Iā€™m expecting timestamp related problems to have been fixed.

Please could someone confirm the expected behaviour:

  1. If a file is modified on a client, then when that same file reaches the server a little later, the timestamp (modified time) on the server is the time the file was modified on the client (rather than the later time when the modified file reached the server).
  2. Similarly, in the reverse direction, if any client observes a file is modified on the server, then when that same file reaches the client a little later, the timestamp on the client is the modification time of the file on the server (rather than when that file reached the client).

(Iā€™m not concerned about when the client is in a different time zone, or even if there is a significant difference in the clocks on the server and clients, but such issues should also be handled somehow).

I still have this problem.

On Nextcloud 3.6.0, I had a huge number of error messages with something along the lines of ā€œSync failed due to invalid modification timeā€. Those error messages went away after downgrading to 3.3.6.

1 Like

this is a preventive measure implemented as result from this issue. once you hit the problem you need to resolve manually. This means you need to update file times and you are safe to upgrade. bad modification times will never ā€œauto-correctā€ so you have to perform a correction to use updated client versions.

2 Likes

It would be great if this problem with the file times could be resolved from within the Desktop client, even if itā€™s manually. Otherwise, itā€™s too much effort, honestly, and sticking with version 3.3.6 instead of updating seems the more practical solution, unfortunately.

once you synced files with wrong modification date to the server there is no way to fix it on the client side. the only way I see is to remove everything and re-upload new data to the server - if you bandwidth and data amount let you do soā€¦

1 Like

How did you all fix this? I do not have access to backups but I do have access to the nextcloud server.

there are scripts above which modify timestamp of the files to ā€˜todayā€™ - this is the quick and dirty method to ā€œfixā€ the issue without backupsā€¦ in #93 I made efforts to document where time stamps are stored in the DB (even after destroying file timestamps) - feel free to develop a working correction scriptā€¦

Wow! file creation date is preserved in the DB! (I have been able to confirm this using your query). Why does nextcloud not provide a fix then? They caused it! They actually exacerbated the issue by having the client refuse to sync the files. This breaks what the client is supposed to do (to sync files). This is objectively much worse than just having the create date wrong because now the date is wrong and files donā€™t sync.

Anyway,

  1. < there are scripts above which modify timestamp of the files to ā€˜todayā€™
    would it not make more sense to use the change date (as reported by the file system) as the create date?
  2. the script mtime_fixer_tool_kit ( mtime correction tool kit) when run, tells me it would update all files to ā€˜todayā€™ despite the mdate being in the DB. It does not work, or I do not understand what it is supposed to do.
  3. Am I understanding this correctly, the real fix would look like this:
  • get mtime from DB (which your code does). If there are multiple versions of a file, you would only use the oldest versionā€™s mtime and disregard the other versions.

  • fix the timestamps in the file system by using the mtime from above

  • run occ scan

Is that it?

this is my understanding as well.

but I would change

to ā€œuse the newest valid mtimeā€ - multiple valid version could existsā€¦ most of the files donā€™t change often, so should be no real issueā€¦

What are the current steps a Desktop client user can take to address this timestamp issue? On my Ubuntu laptop (20.04), Nextcloud client is behaving well. However for the past week I have had to pause all syncing to my Mac (10.14.6) since that client insists on re-uploading 300+ gb of files that mostly should be identical to what is on the server. This is a very serious issue that currently prevents me from syncing files between my primary Dell laptop running Ubuntu and secondary older Macbook Pro.

Although I am savvy enough to voluntarily adopt Ubuntu for my primary OS, I am not as fluent yet as I would like at running scripts and queries to manipulate my files. Without inclusive instructions on how to use them, script code snippets are unfortunately not accessible to me to resolve this on my own.

This superfluous re-syncing issues seems to keep coming back across different Nextcloud updates. I pay for Nextcloud storage on hosting.de and do not have capacity to risk this much data flailing with scripts at my skill level. Furthermore, in my building the my only choice for internet is Xfinity cable broadband, which has unreliable bandwidth and I may incur additional fees above my monthly costs if I must remove and re-sync everything whenever this issue arises.

Iā€™m sorry I donā€™t think there is more to say on this topic. multiple scripts have been published addressing the issue from different sides.

Depending on your specific situation you may want to fix them on the client or on the server and sync to the other device. I donā€™t think there is a good way to merge two different states (even the data is identical) without lot of manual interactions (which is not very convenient for big file numbers).

At this time, my primary recourse is on the client side since Hosting.de maintains the Nextcloud server I use and they are doing their best. In 2020 I initially hosted my own Nextcloud until a hardware failure hosed that server.

Since this is a major persistent issue with no resolution on the horizon, I urge Nextcloud to put out a cohesive reference document that is easy to find with steps that can be taken on the client side. Itā€™s not reasonable to demand individual users distill various code snippets from a forum thread for a major issue impacting so many.

Please, consider if what you are asking from users is inclusive. The goal is reliable software that most people can use and be able to solve common issues themselves through documentation that is efficient at communicating solutions. At this rate of problems with the only promising solutions scattered across years of an unresolved issue thread, I anticipate having to move cloud backups to a different platform when my guthaben (prepaid credit) is exhausted - after having arrived at Nextcloud after service deteriorated on Google Drive and Dropbox.

I wrote a script that takes wweā€™s SQL query and puts the mtime from the DB back into the file system. All my files sync now and have their proper create date! https://github.com/HappyRogue658/fix-nextcloud-file-creation-date

2 Likes

@BenHastings very cool, this I what I would have expected as solution. :rose:

btw: Cool you use PowerShell on Linux, I always forget it is available!

2 Likes

@wwe I couldnā€™t have done it without your SQL code because I donā€™t know SQL. Thank you! Iā€™m not a developer. Iā€™m just a mostly Windows admin. I thought I stick with what I know (PowerShell). Iā€™m just glad that all my files sync again, plus the added bonus that the file create date is real.

2 Likes

@wwe @BenHastings I LOOOOOVE Open Source and when it gets collaborative like that:

:heart: :heart_decoration: :heart: :heart_decoration: :heart: :heart_decoration: :heart: :heart_decoration: :heart: :heart_decoration:

2 Likes