Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pepo

Pages: [1]
1
Sorry, I make this question in the development forum but I cant delete it.

2
Development / How to add a task using an external application?
« on: May 01, 2013, 03:43:42 am »
Hello friends. Can you please tell me how to add a task using an external application?, I mean, I want to make a Java application that can add a task when you execute it.

3
Hello friends. Can you please tell me if there is any way to prevent someone close a task if there is not at least one comment?

4
Getting Started / How to add a task using an external application?
« on: May 01, 2013, 03:39:00 am »
Hello friends. Can you please tell me how to add a task using an external application?, I mean, I want to make a Java application that can add a task when you execute it.

5
Español / Re: Autenticación LDAP
« on: October 15, 2011, 06:11:21 am »
Amigos denme una mano para poder configurar el acceso a través de OpenLDAP, la configuración en Apache2 está así (/etc/apache2/sites-enabled/fengoffice):

<Directory /var/www/fengoffice>
        AuthType Basic
        AuthBasicProvider ldap
        AuthLDAPBindDN "cn=admin,dc=empresa,dc=info"
        AuthLDAPBindPassword "secreto"
        AuthLDAPURL  "ldap://192.168.6.8:389/ou=Ingenieros,ou=Departamento,ou=Subgerencia,ou=Usuarios,dc=etapa,dc=info?uid"
        AuthLDAPGroupAttributeIsDN on
        Require valid-user
        AuthName "Autenticacion"
</Directory>

El fichero /var/www/fengoffice/config/ldap.config.php está así:

  $config_ldap = array (
      'binddn'    => 'cn=admin,dc=empresa,dc=info',
      'bindpw'    => 'secreto',
      'basedn'    => 'dc=empresa,dc=info',
      'host'      => 'ldap://192.168.6.8:3268',
      'port'      => '3268',
      'password_encoding' => 'MD5',
      'uid'       => 'sAMAccountName'
  );


Qué es lo que está mal? Cree el usuario en FengOffice con el mismo nombre que lo tengo en OpenLDAP pero no se autentica.

Pages: [1]