Hello,
We are running a project, in which we ask participants to rate 192 randomized photos (max. 210 KB each, .jpg) in 3 different questions (the questions are being shown at the same page). In order to do this, we are currently using the random generator and the multi-level structure. We will need in total around 20 participants.
However, when running a pre-test, we have been getting the error:
Fehler in Fragenbogen (Seite 17)
Mit dem Eintrag für pg.stack würden die Zusatz-Daten in diesem Interview die Grenze von 64 KB überschreiten. Der Wert für pg.stack kann daher nicht gespeichert werden. Dies kann zu Fehlern im Fragebogen führen, zum Beispiel zum Abbruch der Befragung.
Currently, we have 3 pages for the Multilevel with the following code:
Page 15:
$codes = array_values(valueList('RD01'));
$i = loopToPage('loopEnd', 192);
$randomID = id('RD', 1, $i+1);
if (value($randomID) > 0) {
replace('%dateiname%', $randomID, 'response');
html('<p><img src="%dateiname%" style="max-width: 80%"></p>');
}
Page 16:
multiLevelDown('sub', $codes[$i]);
// Festlegen, dass die Zettel nicht automatisch abgelegt werden
// randomUse('RD01', array());
Page 17:
multiLevelResponse('sub');
Should we be doing something differently? I can't figure it out why there would be no space left. Thank you for the help!
Best