Comment 37 for bug 551269

Revision history for this message
Andrew Schulman (andrex) wrote :

I've completely replaced my config.php file, and I'm still having the problem described in #34: I can see my tree, but trying to browse it results in:

Our attempts to find your SCHEMA have failed (objectclasses)

I can't find a summary anywhere of the changes in config.php from 1.1.0.7 to 1.2.0.5, but I uninstalled 1.1.0.7, removed /etc/phpldapadmin, installed 1.2.0.5, and customized the config.php that was installed. Looking back in the version control history for config.php, it seems that the style for configuring servers has changed from

$i=0;
$ldapservers = new LDAPServers;
$ldapservers->SetValue($i,'server','base',array('dc=example,dc=com'));

to

$servers = new Datastore();
$servers->setValue('server','base',array('dc=example,dc=com'));

I have the 2nd style in config.php, and I still have this problem.