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.
Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !
WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure. Join the pilot program today!
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.
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