metaregistrar / php-epp-client

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

Connecting to Openprovider #196

Closed BirdyUK closed 5 years ago

BirdyUK commented 5 years ago

### PROBLEM SOLVED

Hi,

Thank you for writing the EPP package, i'm using it for several registrars which has helped me out a lot.

Can you please advise how to use this with openprovider because i've tried using the following and had no success in connecting:

$conn = new eppConnection();
$conn->setHostname('https://epp.openprovider.eu');

I have since noticed you don't initialize the eppConnection class when using custom registrars and instead you use the class provided for that registrar, I didn't notice the class extends the eppConnection class!!

### Working example:

$conn = new openproviderEppConnection();
$conn->setHostname('epp.openprovider.eu');
$conn->login();

Thanks