How to BUG fix picture naming study
Hello everyone,
Today, I uploaded my picture naming experiment designed in OpenSesame onto the JATOS server. A check run failed multiple times on multiple devices, browsers etc. However, in OpenSesame, everything works perfectly and the experiment is JATOS compatible. How can I find and fix the bug that makes my experiment stop? In the browser, a screen appears: "Oops, something went wrong", and in the output file I cannot find any reported bugs.
Looking forward to hearing from you :)
Comments
Hi Pia,
You can try to open the Developer tools (on Chrome: View -> Developer -> Developer tools) and see if you see any errors in the console. We'll then be able to tell if it's a problem with JATOS or OSWeb
And maybe @lvanderlinden might be able to help from the OSWeb side?
Best
Hi Elisa,
Thank you for responding so fast! This is the coding that appears after refreshing the screen after the bug as the developer tool suggest doing.
DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/iframe_handler.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
DevTools failed to load SourceMap: Could not load content for https://urd2.let.rug.nl/sm/50a6907fb78f9ce350ecd8437eec0dcc604ba21287893abed38c4313e34e04a6.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for https://urd2.let.rug.nl/sm/d8950babbb3d7572ec9167db8494559b320803ca90f10ac4e1e0960af58a5b48.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
DevTools failed to load SourceMap: Could not load content for chrome-extension://fheoggkfdfchfphceeifdbepaooicaho/sourceMap/chrome/content.map: HTTP error: status code 404, net::ERR_UNKNOWN_URL_SCHEME
I made screenshots during the experiment:
Seems like something can't load properly, but again: it works perfectly for a few loops and the all of a sudden an error occurs.
Best
This error is typically occurs in web browsers when you click on a link that has an unsupported or unknown URL scheme. The URL scheme is the part of a URL that identifies the type of resource being requested, such as "http://" for web pages or "mailto:" for email links. For ex: You may get this "ERR_UNKNOWN_URL_SCHEME error" during mailto: or tel: links inside an iframe.
To solve it, try to add target="_blank" in your URL Scheme/Code.
<a href="mailto:my@email.com" target="_blank">link text</a>This error "ERR_UNKNOWN_URL_SCHEME" has no any specific solution till now. Android user and PC user all are facing this error which needs to be sought out. There's a long-standing bug in Chromium regarding how links without protocols are handled. It occasionally is patched, but seems to keep resurfacing. In some cases, prefixing your links with http:// (or https://) should resolve the issue for you.
Here are some steps you can take to try to solve the "ERR_UNKNOWN_URL_SCHEME" error: