You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am new to the zf1-future world. Does anyone have LDAP running successfully? After migrating from 1.12 to shardj and PHP8.1 it is no longer possible to connect.
In Ldap.php, is_resource($resource) does not return true.
LDAP without Zend works in my PHP 8.1 without problems.
I think it is because of the deprecated is_resource function in Zend/Ldap.
I have replaced it with
$resource !== false
or
(!$this->getResource() || $this->getResource() === false)
in several places and now it works with a single error.
_getAccountDn() returns null.
Can someone from the experts take a look at the LDAP module? I need it to be able to continue using Zend.
Hello,
I am new to the zf1-future world. Does anyone have LDAP running successfully? After migrating from 1.12 to shardj and PHP8.1 it is no longer possible to connect.
In Ldap.php, is_resource($resource) does not return true.
Parameters are
error
The text was updated successfully, but these errors were encountered: