Report Bugs & Request Features

On this page you can report and review:

  • any bugs you or someone else might have found in the software
  • any requests for particular features in the software


To submit a bug report or feature request, please log in first.

ID Type Dated Title/Summary Description Status Version fixed/added
MSP-3777 Bug 2022-02-21 Client crash on Apple M1 computers because of ZFBrowser When users of the latest Apple M1-chipped computers try to run the MSP Challenge client, it'll crash during loading of a specific server session with a generic error message. The Unity player log file mentions the following:

DllNotFoundException: ZFBrowser failed to load … tried: '/….app/Contents/Plugins/libZFProxyWeb.dylib' (mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64e'))

Older Apple computers with Intel chips are not affected.

  • We can confirm that the upcoming version 4.0-RC2 will have fixed this!*

Reported by Mspadmin using version 4.0-beta9-2 (macOS client)

Done 4.0-RC2
MSP-3125 Task 2020-11-10 Allow communication via proxy #2 To be able to communicate with the geoserver our local server installation needed to be able to use the university's proxy.

Solution: include a proxy parameter (should be defined in api_config.php) to class/class.curl.php and add the following lines/parameters before every curl_exec($ch) call:

curl_setopt($ch, CURLOPT_PROXY, $this->proxyurl); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, True);

Reported by BjoernUOLde using version 4.0-beta5 (Windows 10)

Done 4.0-beta6
MSP-3124 Task 2020-11-10 Allow communication via proxy Problem:

To be able to communicate with the MSP Auth Server our local server installation needed to be able to use the university's proxy.

Solution: Expand the code in ServerManager/helpers.php in the CallAPI function after the switch-statement (around line 155)

   curl_setopt($curl, CURLOPT_URL, $url);
   curl_setopt($curl, CURLOPT_PROXY, $proxy);
   curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
   curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
   $result = curl_exec($curl);
   curl_close($curl);

The proxy should be set in server's config file (ServerManager/config.php) and read out into $proxy at the beginning of the CallAPI function.

Reported by BjoernUOLde using version 4.0-beta5 (Windows 10)

Done 4.0-beta6