[PHP-DEV] LDAP parse password policy response

2013-07-30 Thread Andrius Kulbis
Hello, I'm trying to get the password policy response (password is expiring..., grace loggin etc.) from OpenLDAP using PHP: ?php $address = 'x.x.x.x'; $dn = 'eduPersonPrincipalName=testu...@exam.com,ou=People,ou=Users,dc=exam,dc=com'; $password = 'testuser'; if($link =

[PHP-DEV] Pull requests report (30/7/2013)

2013-07-30 Thread Lior Kaplan
The last week was characterized with less merges but more comments on the open and new pull requests (thanks Anatol Belski). I think this is equally important. Merged requests (past 7 days): #371 https://github.com/php/php-src/pull/371 Added test-case for bug #65028 (part of #392) #392

[PHP-DEV] Re: [PHP-CVS] com php-src: Merge from GitHub: ext/opcache/ZendAccelerator.c ext/opcache/ZendAccelerator.h

2013-07-30 Thread Dmitry Stogov
Hi Johannes, I agree, this -dev suffix is annoying in PHP releases. However, I don't see a simple way to avoid it. I don't like to complicate PHP release process or increase OPcache version on each release. In my opinion, it would be good if in releases -dev would be automatically substituted

[PHP-DEV] Re: [PHP-CVS] com php-src: Merge from GitHub: ext/opcache/ZendAccelerator.c ext/opcache/ZendAccelerator.h

2013-07-30 Thread Stas Malyshev
Hi! I agree, this -dev suffix is annoying in PHP releases. However, I don't see a simple way to avoid it. Can we reuse PHP_EXTRA_VERSION from php_version.h? This was dev code will keep -dev, but releases would have no suffix. RCs would be marked as RC but that shouldn't be a big problem I

Re: [PHP-DEV] [PATCH] Constification of some PHP API calls

2013-07-30 Thread Sara Golemon
At a glance, this looks awesome. There are a few changes where you introduced #ifdef WIN32 checks that I want to spend a little more time looking at... -Sara P.S. - Could I convince you to put it on a github fork to make it easier to read? No big deal if not... I just like that web view. :)

[PHP-DEV] [PATCH] [RESEND] sapi/apache2*: Support apache 2.4 per module logging

2013-07-30 Thread Cristian Rodríguez
--- sapi/apache2filter/sapi_apache2.c | 3 +++ sapi/apache2handler/mod_php5.c| 4 2 files changed, 7 insertions(+) diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index c308a29..1448d52 100644 --- a/sapi/apache2filter/sapi_apache2.c +++

[PHP-DEV] [PATCH] [RESEND] sapi/apache2*: USe the correct API at·server startup

2013-07-30 Thread Cristian Rodríguez
To proceed with startup at the second load only ap_query_state() must be used in newish versions of apache --- sapi/apache2filter/sapi_apache2.c | 11 +-- sapi/apache2handler/sapi_apache2.c | 12 ++-- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git