• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

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