• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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