Re: [PHP-DEV] Small regression in PHP-LDAP

2015-11-03 Thread Andreas Heigl
Am 03.11.15 um 20:07 schrieb Andrea Faulds: > Hi Andreas, > > Andreas Heigl wrote: >> +1 on that solution. Just throwing "host:port" onto something doesn't >> help anyone. Try that with "www.google.com:443" in your favourite >> browser. Most will give you an error (if it's not port 80). So those >

Re: [PHP-DEV] Small regression in PHP-LDAP

2015-11-03 Thread Andrea Faulds
Hi Andreas, Andreas Heigl wrote: +1 on that solution. Just throwing "host:port" onto something doesn't help anyone. Try that with "www.google.com:443" in your favourite browser. Most will give you an error (if it's not port 80). So those people that try it will eventually read the documentation

Re: [PHP-DEV] Small regression in PHP-LDAP

2015-11-03 Thread Andreas Heigl
Am 03.11.15 um 15:23 schrieb Bishop Bettini: > On Tue, Nov 3, 2015 at 12:03 AM, Côme Chilliet wrote: > >> So basically my question is, is that something that should be "fixed" to >> be consistent with previous PHP version, or should it stay that way as this >> is what is documented and tested? >>

Re: [PHP-DEV] Small regression in PHP-LDAP

2015-11-03 Thread Bishop Bettini
On Tue, Nov 3, 2015 at 12:03 AM, Côme Chilliet wrote: > So basically my question is, is that something that should be "fixed" to > be consistent with previous PHP version, or should it stay that way as this > is what is documented and tested? > An equivalent question: Do you want to support this

[PHP-DEV] Small regression in PHP-LDAP

2015-11-02 Thread Côme Chilliet
Hello, It has been brought to my attention that some PHP code using LDAP connect was broken by the update to PHP 5.6.11. This is because the use on ldap_connect(host:port) is not allowed anymore. You have to use either ldap_connect(host, port) or ldap_connect(ldap://host:port). The use of ldap_