I upgraded months ago when the latest version was 1.2.2. Now that I think abt it, I wiped the DB so it was actually a clean-install, not an upgrade.
Wrong duplicates are created with leading slash "/" in front of album/image folder, which makes URL not found, but they appear in Search results. Out of ~2000 real images there are ~6000 entries in the database. Writing this i am already afraid of not only duplicates, but even triplicates. I don't know the root cause, but any idea how can i track it down?
Quote:you would have to re-load your database from a backup and manually correct the records--delete ones that should not be there and fix the folder string for ones that should be there but have invalid folder names.
As to the difficulty, folder names are invalid if any of the following appear:
leading slash
trailing slash
leading period
containing the string /./
containing the string /../
For any of these cases the garbage collection will attempt to correct the problem by fixing the folder name and updating the database record. That update will fail if there is already a record with the correct folder name--thus the requirement sometimes that you fix these things manually.