• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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