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.
Inviting everyone who uses WordPress management tools in Plesk The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test. To participate, please use this link .
Your experience will help shape product decisions and ensure the tools better support real-world use cases.
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