kri
About
- Username
- kri
- Joined
- Visits
- 1,189
- Last Active
- Roles
- Moderator
Comments
-
That is nice! Do you think others could encounter the same problem? Then please consider sharing it here with us.
-
So JATOS started without errors. Hm. Java is not the problem - JATOS would start without it. Is there something blocking access to port 9000 on your computer? Is there maybe some kind of firewall / virus protection installed?
-
Not sure what's going on. What's in JATOS' log. You can find them in the installation folder in logs/application.log and logs/loader.log. Are there any exceptions or errors?
-
Sounds to me like you started several loader.bat. Or some other server is using port 9000. What happens when you open localhost:9000 in your browser?
-
Hi Ethan, Yes, the blog post you mention is quite old and it's on my list to write a new version of it - but my list is pretty long ... And it's difficult to say: there are many factors that come to play, e.g. Number of users and studies Number of p…
-
Hi, from what I see in your folder structure your JATOS started normally. What happens when you open localhost:9000 in your browser? And do you get any error messages in the terminal window that opened after you clicked on loader.bat? Best, Kristian
-
It worked for me on a freshly installed Windows 11. No problems, no errors. But do I understand you correctly, you got it going on your machine? I'm not so much a Windows user anymore. Do you think there is a bug in JATOS running on Windows 11? Is t…
-
Hi, I didn't try JATOS on Windows 11 yet. Let me grab a copy and come back to you. Best, Kristian
-
Exactly this, jatos.js is magically added by JATOS. You never have to add it yourself. Although you can use your own version of jatos.js. But this makes only sense if you have somehow adjusted it. Best Kristian
-
Yes, JATOS works with jsPsych 7. I just turned the 2 example experiments from their tutorial into JATOS studies. You can try them out: https://forum.cogsci.nl/uploads/209/WCDQPK8RTE9W.zip https://forum.cogsci.nl/uploads/716/Z71P1TQLQS2N.zip Best, Kr…
-
Hi Saurabh, Actually the "Import properties" button lets you import the whole component properties (!= study properties) in JSON format and that includs the "JSON Input". It has an easy schema. Here is an example: { "ver…
-
Weird, one would think 7 days is greater than 300 seconds. Maybe there is/was another proxy/gateway that causes the timeouts?
-
That's a shame. JATOS gets updates constantly. Maybe try to talk to your admin again or tell him to talk to me. Updates are less difficult then they seem. And the newer versions have an automatic update that makes it even easier.
-
Hi Julius, if it is just about working together on a study, e.g. being all able to access the result data, you can add your students as members of the study. As members of the study they have the same rights as you have. Just go to your study -> …
-
Looks like your JavaScript objects (trial_data) weren't properly serialized to JSON. Try: jatos.appendResultData(JSON.stringify(trial_data) + ","); Best, Kristian
-
Hi, I see from your screenshots you are using jatos.uploadResultFile. By default JATOS has a limit of 30 MB for file uploads but this can be changed in the production.conf. So file size shouldn't be your problem if your files are max 7-10 MB. But I …
-
jatos.submitResultData() and jatos.appendResultData() are the functions to save data in JATOS' database. There is also jatos.uploadResultFile() if you have larger data like images or audio (https://www.jatos.org/jatos.js-Reference.html#result-data-a…
-
Yes, a newer JATOS version would help here. In v3.5.3 we added the 'httpLoop', that deals with this kind of problems. The current version is v3.6.1. Nice that you could find a solution that works for you. There is no ugly solution if it does the job…
-
You can get the version via jatos.version. Should give you back a string. (I'll answer the rest later)
-
Hi Dorian, actually, which JATOS version do you run on your server? Maybe a newer version can help here already. Best, Kristian
-
Yes you need admin rights for that.
-
Hi Dorian, It looks like you send the result data twice in quick succession. First you send it in on_finish and then second in on_close . Sending the result data once is enough (at least with jatos.submitResultData - if you want to append then use …
-
Great you solved it! I'm not an Apache expert. I never used Let's Encrypt with Apache. Maybe you are correct and this is the way to go.
-
Can you post your apache.conf?
-
If you want to use JATOS with Apache you should configure Apache to use encryption and your domain. JATOS usually runs on localhost and port 9000. Apache just forwards all traffic to JATOS. Don't configure JATOS to use your public IP or certificate.…
-
My expertise is more for JATOS and not for OSWeb: is it possible that your JATOS server doesn't allow websockets? The first error message seems to point at this and all other errors just follow. Can you check JATOS' test page if websockets work?
-
Your first question you should ask in the OpenSesame forum since you are trying their conversion tool. JATOS itself doesn't care for the format of your data as long as they are in text format, so CSV, JSON, XML are all fine. You could consider chang…
-
JATOS has already a one minute delay after three unsuccessful authentication attempts. This definitely applies for normal (database) logins. But I have to check in JATOS' source code if this applies to other methods like LDAP or OAuth as well. Will …
-
There is no configuration in JATOS to change the favicon but if you are using Apache or nginx (or similar) in front, you can set them up to deliver the favicon from some other source.
-
Nice! Hm, I'm not an LDAP expert but I thought active directory and LDAP are somehow compatible.