• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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