Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
485 views
in Q2A Core by
how do i use sso? say that im on an internal site that have the username, email and so on stored in cookies..how can i auto-login the user? security is not an issue.

 

i've tried reading the documentation but it seems a little overkill for what i want to accomplish...i have everything in cookies on the same site, ie username, email, real names and so on..i just want to auto-login these users so that they can ask questions - meanwhile i want to have a group of "approved" users that can answer
Q2A version: latest

1 Answer

0 votes
by

It sounds like you should set Q2A up with single sign-on integration, i.e. have all the users managed by your main site. This page describes the details.

Otherwise, if you really want Q2A to manage users internally, but simply log in users from your main site automatically to Q2A, you should create a plugin with a login module that implements the check_login() method, and then calls qa_log_in_external_user() if a user is logged in. However you should note that in this case, Q2A users will be able to modify their usernames and emails, and these modifications will not be copied back to your main site.

...