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.
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.
Yes, you can. This is covered in the 'Advanced Features Manual'.
5. Global access control list in named.conf
To allow DNS transfers server-wide on Plesk, the administrator can use global access control list in named.conf.
To set up an acl, the administrator should insert into the Plesk database the values describing servers to which DNS transfers are allowed. It can be done with mysql query:
insert into misc (param,val) values ('DNS_Allow_Transfer1', '1.1.1.1/24');
To specify more hosts, use the parameters like "DNS_Allow_Transfer2" and so on:
insert into misc (param,val) values ('DNS_Allow_Transfer2', '2.2.2.2');
Hosts should be specified by IP address and optional mask.
Once you added all the required IPs, run the following command to update named.conf:
To set up an acl, the administrator should insert into the Plesk database the values describing servers to which DNS transfers are allowed. It can be done with mysql query:
running it in the mysql utility was indeed how to do it, i had the problem that the misc table didn't even exist
which is way i think this solution does not work and is not the way to fix it.
you should've gotten a "1 rows updated" or something. read some posts back as to how i did it (i edited the named.conf file directly), works like a charm