metaregistrar / php-epp-client

Object-oriented PHP EPP Client
https://www.metaregistrar.com/docs/
MIT License
213 stars 156 forks source link

dnsbe createdomain- 2102: Unimplemented option #85

Closed pc-partner closed 7 years ago

pc-partner commented 7 years ago

When trying to register you domain:

$this->createdomain($conn, $domain, $contactid, $contactid, $contactid, $contactid, $nameservers); You have the same problem when changing nameservers: Error 2102: Unimplemented option Is there an eample on how to add Host Attributes instead of Host Objects?

metaregistrar commented 7 years ago

The second parameter of the eppCreateDomainRequest is $forceHostAttr

So to force host attributes, use this parameter as follows: $domain = new eppDomain(); $create = new eppCreateDomainRequest($domain, true);