• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Backup

B

bartje3

Guest
Hello,

It seems that SB3 doesn't have any backup capabillities anymore, so I want to write a backup script for daily backups.
Can someone tell me which directories has to be back-upped and how to exclude trial sites from backup ?

Thank you, regards,

Bart
 
As I know next Sitebuilder version 4 will have backup option. As for now if you wish to backup Sitebuilder sites you need backup /usr/local/sitebuilder/htdocs/sites (be default) directory and Sitebuilder database.
Each site has it's owner and you can distinguish trial site from regular by this owner. In mysql table 'site' all sites are listed. Each site has 'user_id'. List of users can be found in 'user' table. And if sites is owned by user 'NAME_guest' it means that this site is trial. In mysql it should be something like following request:

mysql> select s.alias from site s, user u where s.user_id=u.id and u.user_name like "%guest%";

This command should output you the list of trial sites.
Hope this information will be helpful for you.
 
Hi,

Thank you ! This helped me a lot.
If you are already working on V.4 I have some suggestions:

- permissions on sites incorrect after migration from V.2(rwxrwxrwx)
- blank page when clicking "publish" (but website was published)
- edit page changes text-type in table cell when a link name has a space (but the published linkname is correct).

Regards,

Bart
 
Back
Top