Nicolas CARPi
Nicolas CARPi
The problem with sending a Reset password link email upon user creation is that the link is only valid for 15 minutes, so high chances the link will be dead...
I'm surprised because before all uploaded files were zipped every single time, and now it is incremental, so should take less space! Can you check with `borg list` how many...
What is interesting is that it's full of duplicated data, given that you go from 29 to 7.7 with dedup. Would be interesting to extract one and actually see what's...
> I wonder why the sql files have to be backed up with borg So that you end up with a complete backup: sql + uploaded files. > why they're...
Thank you for your comments, I agree that an approach like what you suggest would be an improvement to this process.
I don't think gzipping the sql files is an issue. I did some tests with the same (sql dump) file compressed differently, copied 500 times in a directory, and 500...
Script used: ~~~bash #!/usr/bin/env bash export BORG_PASSPHRASE="totototo" function copyfiles { mkdir -p "$2" for i in $(seq 1 500); do cp "$1" "${2}/${i}.sql";done } function makeborg { export BORG_REPO="$1" borg...
Can you try this procedure: https://doc.elabftw.net/debug.html#resetting-a-password-directly-from-mysql ?
Make sure that `elabctl.conf` exists and is properly configured: https://doc.elabftw.net/backup.html#with-elabctl
An example configuration is available here: https://github.com/elabftw/elabctl/blob/master/elabctl.conf You might need to define a different `BORG_PATH`.