Portada
LimeSurvey Forums
Welcome, Guest
Please Login or Register.    Lost Password?
LDAP configuration (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: LDAP configuration
#17720
gerejefr (User)
Expert Lime
Posts: 96
graphgraph
User Offline Click here to see the profile of this user
LDAP configuration 3 Months, 2 Weeks ago Karma: 0  
Bonjour,

J'ai tenté de configurer la fonction LDAP dans le fichier de ldap-config.php mais j'ai le message suivant :


Désolé mais le module LDAP est absent dans votre configuration PHP


Note :
Les requêtes LDAP sont définies par l'administrateur dans le fichier config-ldap.php:

$serverId=0;
// Define the server DNS name or IP Address
// If encryption is enabled, make sure the name given here
// corresponds to the certificate's identity
$ldap_server[$serverId]['server'] = "nomdemonserveurad.nomdedomaine";

// Define the TCP port on which the LDAP server is listenning
// This should be 389 for standard LDAP servers
// or 686 for standard LDAPS connections
$ldap_server[$serverId]['port'] = "389";

// Define the ldap protocol to use
// 'ldapv2' and 'ldapv3' are supported
$ldap_server[$serverId]['protoversion'] = "ldapv2";

// Define the encryption method to use
// 'ldaps' is supported for 'ldapv2' servers
// 'start-tls' is supproted for 'ldapv3' servers
// 'none' is supproted for no encryption at all
// Don't forget to setup your CA's certificate in
// the openldap ldap.conf file
$ldap_server[$serverId]['encrypt'] = "none";

// Define the referral option
// 'false' is recommended for ActiveDirectory servers
$ldap_server[$serverId]['referrals'] = false;

// Define the authentication used to bind to the directory
// We currently support simple authentication
// If anonymous bind must be performed, comment the following two lines
//$ldap_server[$serverId]['binddn'] = "CN=administrator,CN=Users,dc=mycompany,dc=org";
//$ldap_server[$serverId]['bindpw'] = "AsecretPassword";


Avez vous une idée pour résoudre ce probleme?

merci d'avance

cordialement
 
Logged Logged  
  The administrator has disabled public write access.
#18128
lemeur (Admin)
LimeSurvey Team
Posts: 316
graphgraph
User Offline Click here to see the profile of this user
Re:LDAP configuration 3 Months ago Karma: 10  
Votre version de php ne contient pas le module php-ldap.

Cdt,
Thibault
 
Logged Logged  
  The administrator has disabled public write access.
#18159
gerejefr (User)
Expert Lime
Posts: 96
graphgraph
User Offline Click here to see the profile of this user
Re:LDAP configuration 3 Months ago Karma: 0  
merci de vote réponse.
 
Logged Logged  
  The administrator has disabled public write access.
Go to top