Steps to replicate the issue (include links if applicable):
- Click on any image on a MediaWiki instance that has the MediaViewer installed.
What happens?:
"There seems to be a technical issue. You can retry or report the issue if it persists."
What should have happened instead?:
Should open up the picture in the viewer.
Workaround
Until this is remedied by the code maintainers, the easiest workaround is:
- Edit:
extensions/MultimediaViewer/resources/mmv/provider/mmv.provider.Image.js
- Go to the line containing the function
imagePreloadingSupported() {
- Comment out the following line (using the forwardslashes -- // ):
return window.XMLHttpRequest !== undefined && 'withCredentials' in new XMLHttpRequest();
- Add on a new line underneath it (before the } ) to read:
return false;
That should work around the issue.
Kindly note that every time you update MediaWiki (and also update the extensions) you will likely need to change this as it over-writes previous versions. (This is also an issue with the 1.44 that was released on Wednesday 7/2/25.)
Software version (on Special:Version page; skip for WMF-hosted wikis like Wikipedia):
Other information (browser name/version, screenshots, etc.):