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
>
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
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?
>>
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
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_