metaregistrar / php-epp-client

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

Problems with = in password in settings.ini #24

Closed kg00 closed 8 years ago

kg00 commented 8 years ago

Hi, If there is an '=' in a password (or any other param in settings.ini), loadSettings will load only the part before the '='

If you add limit 2 to explode, this will be solved:

File: Protocols/EPP/eppConnection.php Line: 913

Change: list($param, $value) = explode('=', $setting); To: list($param, $value) = explode('=', $setting,2);

Thank you //

metaregistrar commented 8 years ago

You solution has been implemented, thanks for the contribution

kg00 commented 8 years ago

There are 2 more places to change in the same file: Line 150 and line 885

Thank you

metaregistrar commented 8 years ago

Your issue has been resolved, the lines are changed.