Is there a way to find out, what status the ComfortUpdate server have.
A status page and FAQ would help to sort out issues early.
What hosts/IP are active and in use?
What IP and ports are used to communicate?
Currently there seems to be a maintenance going on.
Error!
No server answer
It seems that the ComfortUpdate server is not responding. Please try again in few minutes or contact the LimeSurvey team
Is there something like status.limesurvey.org ?
If I get the config data right, the communication is to these servers. And transport encryption is disable encryption?
Code:
$config['updaterversion'] = 8;
$config['comfort_update_server_url'] = 'comfortupdate.limesurvey.org/';
//$config['comfort_update_server_url'] = 'web.comfortupdate.org/';
$config['comfort_update_server_ssl'] = 0;
github.com/LimeSurvey/LimeSurvey/blob/26.../updater_version.php
Code:
$server_ssl = Yii::app()->getConfig("comfort_update_server_ssl");
if ($server_ssl === 1) {
if (extension_loaded("openssl")) {
return 'https://';
}
}
return 'https://';
}
Accessing
comfortupdate.limesurvey.org/
via https:// seems to be up.