Closed idanshahar closed 8 years ago
What indications do you have of the connection being successful? How have you attempted to debug your problem?
Without digging into your exact configuration, I notice that you are not posting the contents of your dist/js/conf.json in taiga-front/. Did you set loginFormType to ldap in it?
With no further info, closing
I am trying to connect self hosted taiga.io to a public ldap server. it seems that the connection worked but users cannot login to taiga. this is the ldap server details: http://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/
this is my configuration on taiga/taiga-back/local.py:
from .common import *
MEDIA_URL = "/media/" STATIC_URL = "/static/"
SITES["front"]["domain"] = "localhost:8000"
DEBUG = True PUBLIC_REGISTER_ENABLED = True
DEFAULT_FROM_EMAIL = "no-reply@example.com" SERVER_EMAIL = DEFAULT_FROM_EMAIL
EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
EMAIL_USE_TLS = False
EMAIL_HOST = "localhost"
EMAIL_HOST_USER = ""
EMAIL_HOST_PASSWORD = ""
EMAIL_PORT = 25
INSTALLED_APPS += ["taiga_contrib_ldap_auth"]
------------------
is something wrong?