I am new to PHP. I want to use SSO to login to my Limesurvey. I already have a login page and a web service(.asmx),
When the user go to /admin , rediecting to my login page . after successing , I get the parameter RID and then redirect to /admin?RID=numbers .
Passing RID to the web service can get user infomation.
I want to write some code to auto redirect when user need to login , and get infomation via RID and create account in limesurvey.
Where should I rewrite?
is it in Authwebserver ? or I should write a new auth plugin? thanks.
You can start by copy/paste AuthWebserver, and rename it before put in plugins directory.
Else : next time you update : your code are deleted.
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Else to get a GET parameters :
$rid=isset($_GET) ? $_GET : null; (or with Yii : App()->getRequest()->getQuery('RID'); )
BUT : if you don't knwo how to do this .... i can not help a lot.
Do some test, show some code, etc .... and if you need a PHP dev : hire a pHP dev
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.