Hello Filmlover,
That is a SSL certificate issue, to resolve this issue, I have replaced below code in the file
administrator/components/com_jaamazons3/lib/cloudfusion.2.6/lib/requestcore/requestcore.class.php
[PHP]curl_setopt($curl_handle, CURLOPT_SSL_VERIFYHOST, true);
curl_setopt($curl_handle, CURLOPT_CAINFO, dirname(__FILE__) . ‘/cacert.pem’); // chmod the file as 0755[/PHP]
With:
[PHP]curl_setopt($curl_handle, CURLOPT_SSL_VERIFYHOST, false);
//curl_setopt($curl_handle, CURLOPT_CAINFO, dirname(__FILE__) . ‘/cacert.pem’); // chmod the file as 0755[/PHP]
Everything works properly now, please have a look