History log of /PHP-8.3/ext/ldap/ldap.c (Results 176 – 200 of 473)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 15876e85 16-Nov-2015 Côme Bernigaud

Added back support for undocummented host:port syntax


# 391087ed 12-Nov-2015 Côme Bernigaud

Using default port in ldap_connect when NULL is passed (this was the behavior prior to 5.6.11)

Note that passing 0 will also result in default port.


Revision tags: php-7.0.0RC7, php-5.6.16RC1, php-5.6.15, php-7.0.0RC6, php-7.0.1, php-5.6.15RC1, php-7.0.0RC5, php-5.5.30, php-5.6.14, php-7.0.0RC4
# 560e4fa3 29-Sep-2015 Dmitry Stogov

Removed or simplified incorrect SEPARATE_*() macros usage.


Revision tags: php-5.6.14RC1, php-7.0.0RC3
# 719664de 10-Sep-2015 Dmitry Stogov

fixed compilation error


# 059dd18c 09-Sep-2015 Côme Bernigaud

Added support of LDAP_OPT_TIMEOUT, fixes #69574


# c3fc65eb 08-Sep-2015 Tyson Andre

Fix bug in LDAP extensions' saving TIMELIMIT and DEREF

LDAP_OPT_TIMELIMIT and LDAP_OPT_DEREF's original values weren't
saved properly because of a bug introduced when copy and pasting.

Fix bug in LDAP extensions' saving TIMELIMIT and DEREF

LDAP_OPT_TIMELIMIT and LDAP_OPT_DEREF's original values weren't
saved properly because of a bug introduced when copy and pasting.

This lead to the original timeout being changed
when specifying a temporary override (e.g. for ldap_search(..., $timeout))

show more ...


Revision tags: php-5.6.13, php-7.0.0RC2, php-5.5.29, php-5.4.45, php-5.6.13RC1, php-7.0.0RC1
# 40befb94 18-Aug-2015 Côme Bernigaud

Patch from Rainer Jung to provide Solaris LDAP support


Revision tags: php-5.6.12, php-5.5.28, php-7.0.0beta3, php-5.4.44, php-5.6.12RC1
# 3d38db35 23-Jul-2015 Anatol Belski

fix C99 compat


Revision tags: php-7.0.0beta2, php-7.0.0beta1, php-5.6.11, php-5.5.27, php-5.4.43
# fb4e3085 06-Jul-2015 Aaron Piotrowski

Add missing include


# 02206834 06-Jul-2015 Côme Bernigaud

Attempt at falling back on ldap_find_control for Mac OS


# 7a1a4993 06-Jul-2015 Dmitry Stogov

Fixed return value


# 7ec1e174 06-Jul-2015 Aaron Piotrowski

Update memory freeing and other issues, revert some changes


# 907476f3 05-Jul-2015 Aaron Piotrowski

Convert E_ERROR to thrown Error in extensions


# 34ec1c96 01-Jul-2015 Dmitry Stogov

Cleanup (avoid reallocation).


# 7aa76271 30-Jun-2015 Dmitry Stogov

Use ZSTR_ API to access zend_string elements (this is just renaming without semantick changes).


# 667e9bd4 29-Jun-2015 Côme Bernigaud

Deprecating ldap_sort the right way


# 85aabd3e 28-Jun-2015 Andreas Heigl

Adds deprecation-message for ldap_sort


Revision tags: php-5.6.11RC1, php-5.5.27RC1, php-7.0.0alpha2
# 0483b6e8 23-Jun-2015 Côme Bernigaud

Removed deprecated function calls from ldap module

ldap_search -> ldap search_ext
ldap_search_s ->_ldap_search_ext_s
ldap_add_s -> ldap_add_ext_s
ldap_delete_s -> ldap_delete_ext

Removed deprecated function calls from ldap module

ldap_search -> ldap search_ext
ldap_search_s ->_ldap_search_ext_s
ldap_add_s -> ldap_add_ext_s
ldap_delete_s -> ldap_delete_ext_s
ldap_compare_s -> ldap_compare_ext_s
ldap_value_free -> ldap_memvfree

Only thing left is ldap_sort_entries, no replacement

Conflicts:
ext/ldap/ldap.c

show more ...


# 4f7808ec 23-Jun-2015 Côme Bernigaud

Removed ifdefs of LDAP_API_FEATURE_X_OPENLDAP, fixed a warning

Conflicts:
ext/ldap/ldap.c


# 41774bce 23-Jun-2015 Rasmus Lerdorf

Fix more minor mistakes in the proto comments


# 5250fc77 23-Jun-2015 Côme Bernigaud

Removed deprecated function calls from ldap module

ldap_search -> ldap search_ext
ldap_search_s ->_ldap_search_ext_s
ldap_add_s -> ldap_add_ext_s
ldap_delete_s -> ldap_delete_ext

Removed deprecated function calls from ldap module

ldap_search -> ldap search_ext
ldap_search_s ->_ldap_search_ext_s
ldap_add_s -> ldap_add_ext_s
ldap_delete_s -> ldap_delete_ext_s
ldap_compare_s -> ldap_compare_ext_s
ldap_value_free -> ldap_memvfree

Only thing left is ldap_sort_entries, no replacement

show more ...


# ea49be9b 23-Jun-2015 Côme Bernigaud

Removed ifdefs of LDAP_API_FEATURE_X_OPENLDAP, fixed a warning


Revision tags: php-5.5.26, php-7.0.0alpha1, php-5.6.10, php-5.4.42, POST_PHP7_NSAPI_REMOVAL, PRE_PHP7_NSAPI_REMOVAL, php-5.6.10RC1, php-5.5.26RC1, php-5.5.25, php-5.6.9, php-5.4.41
# eb702637 05-May-2015 Andreas Heigl

Implements extended error messages

This commit introduces a new constant that can be used to retrieve more
detailed error messages.

This fixes #47222

The new constant L

Implements extended error messages

This commit introduces a new constant that can be used to retrieve more
detailed error messages.

This fixes #47222

The new constant LDAP_OPT_DIAGNOSTIC_MESSAGE is defined in PHP when the
underlying library provides (and understands) it. This is the case in
the current OpenLDAP-implementation.

Tanks to Johnny Willer who provided the solution at http://stackoverflow.com/questions/28765077/get-number-of-ad-errors-with-ldap-and-php-ldap-function-return-unprecise-error/28816473#28816473

show more ...


Revision tags: php-5.6.9RC1, php-5.5.25RC1
# e7af0fe1 16-Apr-2015 Côme Bernigaud

Replaced calls to deprecated openldap functions

ldap_unbind_s -> ldap_unbind_ext
389 -> LDAP_PORT
ldap_init -> ldap_initialize
ldap_bind_s -> ldap_sasl_bi

Replaced calls to deprecated openldap functions

ldap_unbind_s -> ldap_unbind_ext
389 -> LDAP_PORT
ldap_init -> ldap_initialize
ldap_bind_s -> ldap_sasl_bind_s
ldap_value_free -> ber_memvfree
Also added ldap_is_ldap_url check

show more ...


# 983b101f 05-May-2015 Andreas Heigl

Implements extended error messages

This commit introduces a new constant that can be used to retrieve more
detailed error messages.

This fixes #47222

The new constant L

Implements extended error messages

This commit introduces a new constant that can be used to retrieve more
detailed error messages.

This fixes #47222

The new constant LDAP_OPT_DIAGNOSTIC_MESSAGE is defined in PHP when the
underlying library provides (and understands) it. This is the case in
the current OpenLDAP-implementation.

Tanks to Johnny Willer who provided the solution at http://stackoverflow.com/questions/28765077/get-number-of-ad-errors-with-ldap-and-php-ldap-function-return-unprecise-error/28816473#28816473

show more ...


12345678910>>...19