Configuring django_python3_ldap with test server failures2019 Community Moderator ElectionDjango problem with creating user then logging them inDjango settings.py not being detectedMongoEngine — how to custom User model / custom backend for authenticate()Django - matching query does not existDjango 'global name' errorrunning server error for develop Django on OpenshiftDjango Ajax post 500 internal errordisable django clasical auth and force ldap authHow can i get email from a user who logged in , with ldap and spring securitygetattr - Exception Value: module 'django.db.models' has no attribute 'model_name''

Is there any way to damage Intellect Devourer(s) when already within a creature's skull?

In the late 1940’s to early 1950’s what technology was available that could melt a LOT of ice?

Examples of a statistic that is not independent of sample's distribution?

My story is written in English, but is set in my home country. What language should I use for the dialogue?

Latest web browser compatible with Windows 98

Virginia employer terminated employee and wants signing bonus returned

Am I not good enough for you?

What Happens when Passenger Refuses to Fly Boeing 737 Max?

Why the color red for the Republican Party

What are some noteworthy "mic-drop" moments in math?

If the Captain's screens are out, does he switch seats with the co-pilot?

Can you reject a postdoc offer after the PI has paid a large sum for flights/accommodation for your visit?

Are the terms "stab" and "staccato" synonyms?

Are babies of evil humanoid species inherently evil?

Why is this plane circling around the Lucknow airport every day?

How to pass a string to a command that expects a file?

How do I deal with a powergamer in a game full of beginners in a school club?

Why would a jet engine that runs at temps excess of 2000°C burn when it crashes?

Good for you! in Russian

Can someone explain what is being said here in color publishing in the American Mathematical Monthly?

Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?

Do Bugbears' arms literally get longer when it's their turn?

Why is Beresheet doing a only a one-way trip?

What wound would be of little consequence to a biped but terrible for a quadruped?



Configuring django_python3_ldap with test server failures



2019 Community Moderator ElectionDjango problem with creating user then logging them inDjango settings.py not being detectedMongoEngine — how to custom User model / custom backend for authenticate()Django - matching query does not existDjango 'global name' errorrunning server error for develop Django on OpenshiftDjango Ajax post 500 internal errordisable django clasical auth and force ldap authHow can i get email from a user who logged in , with ldap and spring securitygetattr - Exception Value: module 'django.db.models' has no attribute 'model_name''










0















I am having trouble using django_python3_ldap to connect to this test server:



https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/



It wont recognize the username or password for any user and was wondering if anyone can see an error in my implementation



AUTHENTICATION_BACKENDS = [
'django.contrib.auth.backends.ModelBackend',
'django_python3_ldap.auth.LDAPBackend',
]

LOGIN_URL = '/login'
LOGOUT_REDIRECT_URL = '/logout'


LDAP_AUTH_URL = "ldap://ldap.forumsys.com:389"

LDAP_AUTH_SEARCH_BASE = 'dc=example,dc=com'
LDAP_AUTH_USER_FIELDS =
"first_name": "givenName",
"last_name": "sn",
"email": "mail"

LDAP_AUTH_USER_LOOKUP_FIELDS = ("user",)


LDAP_AUTH_CONNECTION_PASSWORD = "password"
LDAP_AUTH_USE_TLS = False

LDAP_AUTH_CLEAN_USER_DATA = "django_python3_ldap.utils.clean_user_data"
LDAP_AUTH_SYNC_USER_RELATIONS = "django_python3_ldap.utils.sync_user_relations"
LDAP_AUTH_FORMAT_SEARCH_FILTERS = "django_python3_ldap.utils.format_search_filters"
LDAP_AUTH_FORMAT_USERNAME = "django_python3_ldap.utils.format_username_openldap"
LDAP_AUTH_ACTIVE_DIRECTORY_DOMAIN = 'ldap.forumsys.com'

LOGGING =
"version": 1,
"disable_existing_loggers": False,
"handlers":
"console":
"class": "logging.StreamHandler",
,
,
"loggers":
"django_python3_ldap":
"handlers": ["console"],
"level": "INFO",
,
,

INSTALLED_APPS = [
'django_python3_ldap',
'kpi.apps.KpiConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',


]



So this test server doesnt have a connection user name but a connection password it looks like. I know having the logging information would help, but i am unsure how to log the action in my views.py function below:



class LoginView(TemplateView):
template_name = 'KPI/login.html'

def post(self, request):
email = password = ""
state = ""

if request.POST:
email = request.POST.get('email')
password = request.POST.get('password')

print(email, password)

user = authenticate(username=request.POST.get('email'), password=request.POST.get('password'))
if user is not None:
login(request, user)

return redirect('/login/index')
else:
state = "Inactive account"
# logging.StreamHandler
return render(request, self.template_name, 'state': state, 'email': email)


In an earlier use of another ldap plugin i was able to get the logging info by using logging.StreamHandler in the inactive account action but that doesn't seem to work.










share|improve this question


























    0















    I am having trouble using django_python3_ldap to connect to this test server:



    https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/



    It wont recognize the username or password for any user and was wondering if anyone can see an error in my implementation



    AUTHENTICATION_BACKENDS = [
    'django.contrib.auth.backends.ModelBackend',
    'django_python3_ldap.auth.LDAPBackend',
    ]

    LOGIN_URL = '/login'
    LOGOUT_REDIRECT_URL = '/logout'


    LDAP_AUTH_URL = "ldap://ldap.forumsys.com:389"

    LDAP_AUTH_SEARCH_BASE = 'dc=example,dc=com'
    LDAP_AUTH_USER_FIELDS =
    "first_name": "givenName",
    "last_name": "sn",
    "email": "mail"

    LDAP_AUTH_USER_LOOKUP_FIELDS = ("user",)


    LDAP_AUTH_CONNECTION_PASSWORD = "password"
    LDAP_AUTH_USE_TLS = False

    LDAP_AUTH_CLEAN_USER_DATA = "django_python3_ldap.utils.clean_user_data"
    LDAP_AUTH_SYNC_USER_RELATIONS = "django_python3_ldap.utils.sync_user_relations"
    LDAP_AUTH_FORMAT_SEARCH_FILTERS = "django_python3_ldap.utils.format_search_filters"
    LDAP_AUTH_FORMAT_USERNAME = "django_python3_ldap.utils.format_username_openldap"
    LDAP_AUTH_ACTIVE_DIRECTORY_DOMAIN = 'ldap.forumsys.com'

    LOGGING =
    "version": 1,
    "disable_existing_loggers": False,
    "handlers":
    "console":
    "class": "logging.StreamHandler",
    ,
    ,
    "loggers":
    "django_python3_ldap":
    "handlers": ["console"],
    "level": "INFO",
    ,
    ,

    INSTALLED_APPS = [
    'django_python3_ldap',
    'kpi.apps.KpiConfig',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',


    ]



    So this test server doesnt have a connection user name but a connection password it looks like. I know having the logging information would help, but i am unsure how to log the action in my views.py function below:



    class LoginView(TemplateView):
    template_name = 'KPI/login.html'

    def post(self, request):
    email = password = ""
    state = ""

    if request.POST:
    email = request.POST.get('email')
    password = request.POST.get('password')

    print(email, password)

    user = authenticate(username=request.POST.get('email'), password=request.POST.get('password'))
    if user is not None:
    login(request, user)

    return redirect('/login/index')
    else:
    state = "Inactive account"
    # logging.StreamHandler
    return render(request, self.template_name, 'state': state, 'email': email)


    In an earlier use of another ldap plugin i was able to get the logging info by using logging.StreamHandler in the inactive account action but that doesn't seem to work.










    share|improve this question
























      0












      0








      0








      I am having trouble using django_python3_ldap to connect to this test server:



      https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/



      It wont recognize the username or password for any user and was wondering if anyone can see an error in my implementation



      AUTHENTICATION_BACKENDS = [
      'django.contrib.auth.backends.ModelBackend',
      'django_python3_ldap.auth.LDAPBackend',
      ]

      LOGIN_URL = '/login'
      LOGOUT_REDIRECT_URL = '/logout'


      LDAP_AUTH_URL = "ldap://ldap.forumsys.com:389"

      LDAP_AUTH_SEARCH_BASE = 'dc=example,dc=com'
      LDAP_AUTH_USER_FIELDS =
      "first_name": "givenName",
      "last_name": "sn",
      "email": "mail"

      LDAP_AUTH_USER_LOOKUP_FIELDS = ("user",)


      LDAP_AUTH_CONNECTION_PASSWORD = "password"
      LDAP_AUTH_USE_TLS = False

      LDAP_AUTH_CLEAN_USER_DATA = "django_python3_ldap.utils.clean_user_data"
      LDAP_AUTH_SYNC_USER_RELATIONS = "django_python3_ldap.utils.sync_user_relations"
      LDAP_AUTH_FORMAT_SEARCH_FILTERS = "django_python3_ldap.utils.format_search_filters"
      LDAP_AUTH_FORMAT_USERNAME = "django_python3_ldap.utils.format_username_openldap"
      LDAP_AUTH_ACTIVE_DIRECTORY_DOMAIN = 'ldap.forumsys.com'

      LOGGING =
      "version": 1,
      "disable_existing_loggers": False,
      "handlers":
      "console":
      "class": "logging.StreamHandler",
      ,
      ,
      "loggers":
      "django_python3_ldap":
      "handlers": ["console"],
      "level": "INFO",
      ,
      ,

      INSTALLED_APPS = [
      'django_python3_ldap',
      'kpi.apps.KpiConfig',
      'django.contrib.admin',
      'django.contrib.auth',
      'django.contrib.contenttypes',
      'django.contrib.sessions',
      'django.contrib.messages',
      'django.contrib.staticfiles',


      ]



      So this test server doesnt have a connection user name but a connection password it looks like. I know having the logging information would help, but i am unsure how to log the action in my views.py function below:



      class LoginView(TemplateView):
      template_name = 'KPI/login.html'

      def post(self, request):
      email = password = ""
      state = ""

      if request.POST:
      email = request.POST.get('email')
      password = request.POST.get('password')

      print(email, password)

      user = authenticate(username=request.POST.get('email'), password=request.POST.get('password'))
      if user is not None:
      login(request, user)

      return redirect('/login/index')
      else:
      state = "Inactive account"
      # logging.StreamHandler
      return render(request, self.template_name, 'state': state, 'email': email)


      In an earlier use of another ldap plugin i was able to get the logging info by using logging.StreamHandler in the inactive account action but that doesn't seem to work.










      share|improve this question














      I am having trouble using django_python3_ldap to connect to this test server:



      https://www.forumsys.com/tutorials/integration-how-to/ldap/online-ldap-test-server/



      It wont recognize the username or password for any user and was wondering if anyone can see an error in my implementation



      AUTHENTICATION_BACKENDS = [
      'django.contrib.auth.backends.ModelBackend',
      'django_python3_ldap.auth.LDAPBackend',
      ]

      LOGIN_URL = '/login'
      LOGOUT_REDIRECT_URL = '/logout'


      LDAP_AUTH_URL = "ldap://ldap.forumsys.com:389"

      LDAP_AUTH_SEARCH_BASE = 'dc=example,dc=com'
      LDAP_AUTH_USER_FIELDS =
      "first_name": "givenName",
      "last_name": "sn",
      "email": "mail"

      LDAP_AUTH_USER_LOOKUP_FIELDS = ("user",)


      LDAP_AUTH_CONNECTION_PASSWORD = "password"
      LDAP_AUTH_USE_TLS = False

      LDAP_AUTH_CLEAN_USER_DATA = "django_python3_ldap.utils.clean_user_data"
      LDAP_AUTH_SYNC_USER_RELATIONS = "django_python3_ldap.utils.sync_user_relations"
      LDAP_AUTH_FORMAT_SEARCH_FILTERS = "django_python3_ldap.utils.format_search_filters"
      LDAP_AUTH_FORMAT_USERNAME = "django_python3_ldap.utils.format_username_openldap"
      LDAP_AUTH_ACTIVE_DIRECTORY_DOMAIN = 'ldap.forumsys.com'

      LOGGING =
      "version": 1,
      "disable_existing_loggers": False,
      "handlers":
      "console":
      "class": "logging.StreamHandler",
      ,
      ,
      "loggers":
      "django_python3_ldap":
      "handlers": ["console"],
      "level": "INFO",
      ,
      ,

      INSTALLED_APPS = [
      'django_python3_ldap',
      'kpi.apps.KpiConfig',
      'django.contrib.admin',
      'django.contrib.auth',
      'django.contrib.contenttypes',
      'django.contrib.sessions',
      'django.contrib.messages',
      'django.contrib.staticfiles',


      ]



      So this test server doesnt have a connection user name but a connection password it looks like. I know having the logging information would help, but i am unsure how to log the action in my views.py function below:



      class LoginView(TemplateView):
      template_name = 'KPI/login.html'

      def post(self, request):
      email = password = ""
      state = ""

      if request.POST:
      email = request.POST.get('email')
      password = request.POST.get('password')

      print(email, password)

      user = authenticate(username=request.POST.get('email'), password=request.POST.get('password'))
      if user is not None:
      login(request, user)

      return redirect('/login/index')
      else:
      state = "Inactive account"
      # logging.StreamHandler
      return render(request, self.template_name, 'state': state, 'email': email)


      In an earlier use of another ldap plugin i was able to get the logging info by using logging.StreamHandler in the inactive account action but that doesn't seem to work.







      django ldap






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 6 at 16:27









      MfreemanMfreeman

      153119




      153119






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55027860%2fconfiguring-django-python3-ldap-with-test-server-failures%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55027860%2fconfiguring-django-python3-ldap-with-test-server-failures%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Save data to MySQL database using ExtJS and PHP [closed]2019 Community Moderator ElectionHow can I prevent SQL injection in PHP?Which MySQL data type to use for storing boolean valuesPHP: Delete an element from an arrayHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?How to get a list of MySQL user accountsHow Do You Parse and Process HTML/XML in PHP?Reference — What does this symbol mean in PHP?How does PHP 'foreach' actually work?Why shouldn't I use mysql_* functions in PHP?

          Compiling GNU Global with universal-ctags support Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!Tags for Emacs: Relationship between etags, ebrowse, cscope, GNU Global and exuberant ctagsVim and Ctags tips and trickscscope or ctags why choose one over the other?scons and ctagsctags cannot open option file “.ctags”Adding tag scopes in universal-ctagsShould I use Universal-ctags?Universal ctags on WindowsHow do I install GNU Global with universal ctags support using Homebrew?Universal ctags with emacsHow to highlight ctags generated by Universal Ctags in Vim?

          Add ONERROR event to image from jsp tldHow to add an image to a JPanel?Saving image from PHP URLHTML img scalingCheck if an image is loaded (no errors) with jQueryHow to force an <img> to take up width, even if the image is not loadedHow do I populate hidden form field with a value set in Spring ControllerStyling Raw elements Generated from JSP tagds with Jquery MobileLimit resizing of images with explicitly set width and height attributeserror TLD use in a jsp fileJsp tld files cannot be resolved