I think there are a HTML error here maybe have a look to server log ?
(we must imporove error log with remote_control, really difficult).
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.
Silly question surely : remote control is activated ?
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.
Activated RPC Interface : JSON-RPC
Publish API in /admin/remotecontrol : YES
Devine Access-Control_allow_origin header : NO
(no difference if yes, obviously)
Are there some specific php modules that should be activated too ? Something else I have to think about ?
I finally found the error. Stupid me : I just had to scrupulously respect JSON-RPC.
Instead of this :
{"method": "get_session_key", "params": {"username": "my_user_name", "password": "my_password","plugin":"Authdb"}}
I had to write :
{"method": "get_session_key", "params": ["my_user_name","my_password","Authdb"],"id":1}
And it works...
Thank you for your help.
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.