Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The new Python extension is now available. It allows customers to deploy and manage WSGI-based Python applications on their websites directly from Plesk.
Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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.
LOGFILE=/home/backup/logs/domainbackup_$(date +'%Y%m%d_%H%M').log
FILE=domainbackup_$(date +'%Y%m%d_%H%M').tar
DATE=$(date +'%Y%m%d_%H%M')
cd /home/httpd/vhosts/
echo "*** Creating Single-Backups ***" >> $LOGFILE
for file in $( ls -xA1d * ); do
if [ -d ${file} ]
then
du $file --max-depth=0 >> $LOGFILE
echo "Saving " $file
tar -czf $file.tar.gz $file >>$LOGFILE
fi
done
cd /var/lib/mysql
for database in $( ls -xA1d *); do
if [ -d ${database} ]
then
du $database --max-depth=0 >> $LOGFILE
echo "Dumping databases " $database
mysqldump -uadmin -p*** $database > $database.sql
tar -czf $database.sql.tar.gz $database.sql >>$LOGFILE
fi
done
btw.: Datasheet is a script of us, wich prints out the passwords of a domain for plesk/mail/ftp, etc. If someone wants to try it out...