Probably your localhost can't verify certificate. Maybe you don't have installed it.
Change code to force cURL usage.
Go to file modules/Base/EssClient/ClientRequester.php line 160 and change
protected function request_server(& $post_data, $force_fgc = false) {
@set_time_limit(300);
if ($this->is_curl_loaded() && !$force_fgc)
return $this->curl_call($post_data);
else
return $this->fgc_call($post_data);
}
to
protected function request_server(& $post_data, $force_fgc = false) {
@set_time_limit(300);
// if ($this->is_curl_loaded() && !$force_fgc)
return $this->curl_call($post_data);
// else
// return $this->fgc_call($post_data);
}
Regards,
Adam