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.
I was wondering if I make changes directly to the dns files how do I get those changes to update in psa as well? Do I have to add them manually to the db too?
You can add them manually but if Plesk doesn't recognise them it will delete them when you'll try to edit via Plesk. If you see in Plesk records edited by you it wont delete them. IMO better way is to add them with command line: list of commands /usr/local/psa/bin/dns.sh --help
I have come up w/ this solution to add A records into the db...
#!/bin/sh
mysql -Ns -uadmin -p`cat /etc/psa/.psa.shadow` -D psa -e"INSERT INTO `psa`.`dns_recs` (`dns_zone_id`,`type`,`displayHost`,`host`,`displayVal`,`val`) VALUES((SELECT `id` FROM `dns_zone` WHERE `name` LIKE '$1'),'A','$2.$1','$2.$1','$3','$3');"
exit 0
Which is run like...
./mydns.sh example.com subname 127.0.0.1
But yes your right...
/usr/local/psa/bin/dns -a example.com -a subname -ip 127.0.0.1