Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.7k views
in Plugins by

Hello,

I am attempting to setup LDAP Authentication for an internal company Q2A site. I found and installed this plugin: https://github.com/robkub/qa-ldap-login. I added the following line to qa-include/qa-page-login.php. Hopefully its in the right spot... The instructions said around line 59

 
        if (qa_clicked('dologin') && (strlen($inemailhandle) || strlen($inpassword)) ) {
                require_once QA_INCLUDE_DIR.'qa-app-limits.php';
                require_once QA_INCLUDE_DIR.'../qa-plugin/qa-ldap-login/qa-ldap-process.php';
 
                if (qa_user_limits_remaining(QA_LIMIT_LOGINS)) {
                        require_once QA_INCLUDE_DIR.'qa-db-users.php';
                        require_once QA_INCLUDE_DIR.'qa-db-selects.php';
 

If i start up tshark and attempt a login, i can actually see the ldap authenticaiton succeed, but the q2a page just takes me to the login page agian (/?qa=login).

Any ideas what the problem might be? Are any assitance in how to troubleshoot it? I know very little php.

by
Was this problem solved already? I also encountered this issue in 1.6.2?
by
same problem :-(
the LDAP login works great (and all the details are retrieved correctly) but the further redirect fall into a loop: ERR_TOO_MANY_REDIRECTS

Please log in or register to answer this question.

...