- Posts: 5055
- Thank you received: 1267
Ask the community, share ideas, and connect with other LimeSurvey users!
Error!
No server answer
It seems that the ComfortUpdate server is not responding. Please try again in few minutes or contact the LimeSurvey team
$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;
$server_ssl = Yii::app()->getConfig("comfort_update_server_ssl"); if ($server_ssl === 1) { if (extension_loaded("openssl")) { return 'https://'; } } return 'https://'; }
Since the downloaded packages are not signed in a cryptographic way and checked before installation, the http update is a nice attack vector.DenisChenu wrote: Without ssl : any body can set any code on server when updating …