I have limesurvey installed on server behind a firewall. When I enter a valid user login and password, Limesurvey tries to access external ip 176.9.146.178 (
limesurvey-3.limesurvey.org
), firewall blocks this request and I am unable to login. I'd like to known what component is making this request. Is it something related to either limestore or comfort update? How can I disable it?
Same problem here:
forums.limesurvey.org/forum/installation...2-71-1-170927#160581
Ok, my bad. It's the comfortUpdate looking if any update is available.
In config.php it is possible to cancel this check adding 'updatable' => false in config array:
Code:
'config'=>array(// debug: Set this to 1 if you are looking for errors. If you still get no errors after enabling this...'debug'=>0,'debugsql'=>0,// Set this to 1 to enanble sql logging, only active when debug = 0,// Update default LimeSurvey config here'updatable'=>false,)