Pyh.conf’25: a new PHP conference for the Russian-speaking community

Voting

: zero plus three?
(Example: nine)

The Note You're Voting On

info at acpower dot biz
13 years ago
I'm a newbie, so I hope this helps some other newbie with a head scratcher...

This code returned an error of 'No Such Object':

<?php

$search
= ldap_search ($ldapcon, "cn=admin,dc=acpower,dc=biz", "(filters)");

?>

I took out the cn, and magic! it works:

<?php

$search
= ldap_search ($ldapcon, "dc=acpower,dc=biz", "(filters)");

?>

<< Back to user notes page

To Top