Hi,
there seems to be a big misunderstanding about "randomization groups".
Randomization groups are used if you want to display elements in the group in randomized order.
Let's say you want to display all four groupsn but in randomized order.
Then you give all groups the same "randomization group name", like "RG1"
As you may read in the manual
[url]
www.limesurvey.org/manual/Question_group...reate_question_group
[/url]
Randomization group: To start randomizing a question group, enter a string into the field such as randgroup1. You will need to enter that same string in all question groups that you want to randomize and which will then appear in a random order when taking the survey. Only places inside the same group will be randomly switched!
What you did, enter a different name into each group, is useless. Furthermore as you only display one of the four groups.
And now my findings:
I see no no issue in 5.6.57.
But you copied the images. This results in this
Therefore the lss export of this tiny survey takes about 2500 kB.
And I fear that this is the reason for this issue.
Have a look at the settings of your php.ini. (e.g. max_input_vars)
Images are linked as you did here
Code:
<p style="text-align:center;"><img alt="" src="upload/surveys/{SID}/images/1A-1-1.jpg" /><img alt="" src="upload/surveys/{SID}/images/1A-1-1.jpg" /></p>
You see that I changed the hard coded survey ID to {SID}. This is safer, if you change something (copy the survey, export and import). Then the surveyID is always correct.
Joffm