korui Posted November 6, 2014 Share Posted November 6, 2014 I want to set up multiple registrar for same tld, is there any solutions? For example, I want to set up .com to use both ResellerClub and Enom, and let user select a registrar himself. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted November 6, 2014 Share Posted November 6, 2014 I don't think that you can do this by default so that the domain is automatically setup using the registrar choice of the user. a tld can only be assigned to one registrar for automatic registration, via configdomains.php, so you might need to write an addon module if you want to automate this... in the meantime, you could probably do it manually by assigning .com to "None" in the auto-registration dropdown and adding the following entry in includes/additionaldomainfields.php $additionaldomainfields[".com"][] = array("Name" => "Registrar Choice", "LangVar" => "registrarchoice", "Type" => "dropdown", "Options" => "ResellerClub,Enom", "Default" => "ResellerClub",); so when someone tries to register a .com domain, they will be given a choice of registrar - when you manually review the order and accept it, you can then assign it to the registrar of their choice and registration should occur. http://docs.whmcs.com/Domains_Configuration#Automatic_Domain_Registration because each tld can only have one entry in domain pricing, it can only have one price - e.g., you couldn't charge $10 for registrations through RC, and $15 via Enom - they would have to be the same price. 0 Quote Link to comment Share on other sites More sharing options...
korui Posted November 7, 2014 Author Share Posted November 7, 2014 Thanks. I'm sorry to hear that. 0 Quote Link to comment Share on other sites More sharing options...
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.