- Posts: 11
- Thank you received: 1
Welcome to the LimeSurvey Community Forum
Ask the community, share ideas, and connect with other LimeSurvey users!
R package Limer: does it work with limesurvey 5.3?
- migliorati
-
Topic Author
- Offline
- New Member
-
Less
More
7 months 3 weeks ago #230772
by migliorati
R package Limer: does it work with limesurvey 5.3? was created by migliorati
Please help us help you and fill where relevant:
Your LimeSurvey version: 5.3
Own server or LimeSurvey hosting: own server
Survey theme/template:
==================
Hi guys. We passed to version 5.3, and now we have problems using API via the R limer package (I open a ticket about).
There 's someone successfully using limer package of R to access Limesurvey 5.3?
Tx you
Your LimeSurvey version: 5.3
Own server or LimeSurvey hosting: own server
Survey theme/template:
==================
Hi guys. We passed to version 5.3, and now we have problems using API via the R limer package (I open a ticket about).
There 's someone successfully using limer package of R to access Limesurvey 5.3?
Tx you
Please Log in to join the conversation.
7 months 3 weeks ago #230774
by Joffm
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Replied by Joffm on topic R package Limer: does it work with limesurvey 5.3?
Hi,
why do you ask this question about your limer issue again?
[url] forums.limesurvey.org/forum/installation...update-to-5-3#230754 [/url]
why do you ask this question about your limer issue again?
[url] forums.limesurvey.org/forum/installation...update-to-5-3#230754 [/url]
Volunteers are not paid.
Not because they are worthless, but because they are priceless
Please Log in to join the conversation.
- migliorati
-
Topic Author
- Offline
- New Member
-
Less
More
- Posts: 11
- Thank you received: 1
7 months 3 weeks ago #230777
by migliorati
Replied by migliorati on topic R package Limer: does it work with limesurvey 5.3?
Hi Joff.
The 2 questions are different: in the post you refer to I'm asking for the reason of an error, here I'm simply asking if someone is using the package with the new release of Limesurvey, to verify if they are compatible...
Tx for your work
Manlio
The 2 questions are different: in the post you refer to I'm asking for the reason of an error, here I'm simply asking if someone is using the package with the new release of Limesurvey, to verify if they are compatible...
Tx for your work
Manlio
Please Log in to join the conversation.
7 months 3 weeks ago #230783
by holch
Not really...
And this second question could simply be asked in addition on the same post. I don't think many use Limer and of those that do, few are in the forum on a regular basis. I think the best chance to get feedback is to get in contact with the people who develop Limer.
I answer at the LimeSurvey forum in my spare time, I'm not a LimeSurvey GmbH employee.
No support via private message.
Replied by holch on topic R package Limer: does it work with limesurvey 5.3?
The 2 questions are different:
Not really...

And this second question could simply be asked in addition on the same post. I don't think many use Limer and of those that do, few are in the forum on a regular basis. I think the best chance to get feedback is to get in contact with the people who develop Limer.
I answer at the LimeSurvey forum in my spare time, I'm not a LimeSurvey GmbH employee.
No support via private message.
Please Log in to join the conversation.
Less
More
- Posts: 929
- Thank you received: 206
7 months 3 weeks ago #230790
by tammo
Tammo ter Hark at Respondage
For Limesurvey reporting, education and customized themes
respondage.nl
Replied by tammo on topic R package Limer: does it work with limesurvey 5.3?
We (Respondage) use it to make online reports like this:
reporting.toolsforresearch.com/project/d...VF&id=128&sid=863547
The php file calls an R script that calls several RMarkdown scripts. All is based on data that is collected from a LimeSurvey 5.3.26 instance:
vragenlijst.digiscanbouw.nl/index.php/86...t=Y&lang=nl-informal
No problems using Limer, but I believe my business partner did tweak something. I'll ask him.
reporting.toolsforresearch.com/project/d...VF&id=128&sid=863547
The php file calls an R script that calls several RMarkdown scripts. All is based on data that is collected from a LimeSurvey 5.3.26 instance:
vragenlijst.digiscanbouw.nl/index.php/86...t=Y&lang=nl-informal
No problems using Limer, but I believe my business partner did tweak something. I'll ask him.
Tammo ter Hark at Respondage
For Limesurvey reporting, education and customized themes
respondage.nl
The following user(s) said Thank You: holch
Please Log in to join the conversation.
7 months 3 weeks ago - 7 months 3 weeks ago #230791
by Jane
Replied by Jane on topic R package Limer: does it work with limesurvey 5.3?
We did not tweak limer for LS 5.3. We had to tweak it for older versions like v2.
@migliorati Your issue at github.com/cloudyr/limer/issues/58 states that get_session_key is not working and returns an error.
My gut feeling is that it is an error in your RPC2 config. Did you check if it works with a direct call? For instance in PHP:
@migliorati Your issue at github.com/cloudyr/limer/issues/58 states that get_session_key is not working and returns an error.
My gut feeling is that it is an error in your RPC2 config. Did you check if it works with a direct call? For instance in PHP:
Code:
define('ROOT', '/path/to/lsroot/'); require_once ROOT . 'application/libraries/jsonRPCClient.php'; define( 'LS_USER', 'reporter' ); define( 'LS_PASSWORD', 'verysecret' ); // instantiate a new client $myJSONRPCClient = new JsonRPCClient( 'https://example.com/index.php/admin/remotecontrol' ); // receive session key $sSessionKey = $myJSONRPCClient->get_session_key( LS_USER, LS_PASSWORD ); echo $sSessionKey;
Last edit: 7 months 3 weeks ago by Jane. Reason: Type in edited PHP code
Please Log in to join the conversation.