HostinPK Posted January 6, 2023 Report Posted January 6, 2023 At present, clients have to fill the name servers while ordering the domain name and obviously they don't know what to enter there. So, its a good idea to prefill the name server fields with the default name servers (defined somewhere in Blesta). I am sorry for this post, if someone already has the solution to this issue, can guide me here or point to any URL containing the solution to this issue. Quote
Franz Posted January 16, 2023 Report Posted January 16, 2023 I suggested this over on the feature requests board you should add your vote and comments there https://requests.blesta.com/topic/domain-manager-default-nameservers Quote
HostinPK Posted January 16, 2023 Author Report Posted January 16, 2023 5 hours ago, Franz said: I suggested this over on the feature requests board you should add your vote and comments there https://requests.blesta.com/topic/domain-manager-default-nameservers Thanks. I have voted there Quote
Panormitis Posted 19 hours ago Report Posted 19 hours ago Until this feature is ready, if you are using Domain Manager you could set the correct nameservers beforehand for each TLD and these nameservers will be autofilled during ordering a domain name. Unfortunately TLDs would have to be edited one by one to set the nameservers, so if you has a lot of TLDs is a pain, but you could use an SQL query on the database to update the TLDs faster: -- Define your desired nameservers as serialized PHP array SET @ns_value := 'a:4:{i:0;s:14:"ns1.domain.com";i:1;s:14:"ns2.domain.com";i:2;s:0:"";i:3;s:0:"";}'; -- Update only package_meta entries with key 'ns' and an empty value UPDATE package_meta SET value = @ns_value WHERE `key` = 'ns' AND serialized = 1 AND (value = 'a:0:{}' OR value IS NULL); Backup the database first, use it at your own risk. Change ns1.domain.com & ns2.domain.com to your actual nameservers and change s:14 to the correct string length of your nameservers (eg. ns1.domain.com is 14 characters long, that's why s:14). Quote
Paul Posted 5 hours ago Report Posted 5 hours ago We have plans to add a bulk name server update option, as soon as v5.13 per https://dev.blesta.com/browse/CORE-5337 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.