Jira Connector
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-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 (Windows 10) |
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 (Windows 10) |