Hi,
This seems to indicate that it can't validate the new certificate for some reason (for example, the openssl PHP module is not enabled in the php.ini :
faq.miniorange.com/knowledgebase/enable-php-openssl-extension/
).
Modifying the code of the plugin might help to circumvent this as per
www.codegrepper.com/code-examples/php/ph...ts+disable+ssl+check
You can try changing the line:
$contentFile = file_get_contents($path);
to:
$arrContextOptions=array(
"ssl"=>array(
"verify_peer"=>false,
"verify_peer_name"=>false,
),
);
$contentFile = file_get_contents($path, false, $arrContextOptions);
in the file plugins/hikashop/datafeed/datafeed.php
PS: please do not post your message both by email and in the forum.