haveAuthInfo()) pla_error( _('Not enough information to login to server. Please check your configuration.') ); # Fetch basic RootDSE attributes using the + and *. $attrs = array_pop($ldapserver->search(null,'','objectClass=*',array('+','*'),'base')); /* After fetching the "basic" attributes from the RootDSE, try fetching the more advanced ones (from ths list). Add them to the list of attrs to display if they weren't already fetched. (this was added as a work-around for OpenLDAP on RHEL 3. */ $attrs2 = array_pop($ldapserver->search(null,'','objectClass=*',$root_dse_attributes,'base')); if (is_array($attrs2)) foreach ($attrs2 as $attr => $values) if (! isset($attrs[$attr])) $attrs[$attr] = $attrs2[$attr]; include './header.php'; echo ''; printf('

%s%s

',_('Server info for: '),htmlspecialchars($ldapserver->name)); printf('

%s

',_('Server reports the following information about itself')); if (count($attrs) == 0) { echo '

'; printf('
%s
',_('This server has nothing to report.')); exit; } echo ''; foreach ($attrs as $attr => $values) { if ($attr == 'dn') continue; $schema_href = sprintf('schema.php?server_id=%s&view=attributes&viewvalue=%s',$ldapserver->server_id,$attr); echo ''; echo ''; } echo '
'; printf('%s', $attr,$schema_href,htmlspecialchars($attr)); echo '
'; echo ''; if (is_array($values)) foreach ($values as $value) { $oidtext = ''; print ''; if (preg_match('/^[0-9]+\.[0-9]+/',$value)) { printf('', htmlspecialchars($value)); if ($oidtext = support_oid_to_text($value)) if (isset($oidtext['ref'])) printf('',$oidtext['ref'],$oidtext['title']); else printf('',$oidtext['title']); else if ($value) printf('',$value); } else { printf('',htmlspecialchars($value)); } print ''; if (isset($oidtext['desc']) && trim($oidtext['desc'])) printf('',$oidtext['desc']); } else printf('',htmlspecialchars($values)); echo '
%s%s%s%s
%s
%s
'; echo '
'; ?>