• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Resolved Backup Manager - restoring /private

bekway

New Pleskian
I created and stored some important files in a private password-protected folder under mydomain/files/private (webdav). I lost an important file stored in this folder. I cannot see how to retreive it from my whole server backup, this folder does not appear on either site files nor domains when using Backup Manager
 
Hello. By default, password-protected directories created in site's docroot. Also you could try to find these file directly in backup archives by the following command:
Code:
find /var/lib/psa/dumps -name *.tgz | grep mydomain | grep -E 'user\-data|apache\-files' | while read -r line; do echo "$line"; tar -tvm -zf "$line" | grep files/private; done;
 
Back
Top