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.