Hi,
after 1 day working with this problem "Error: SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed" i found a solution for it, open yoursitename/administrator/components/com_virtuemart/classes/Log/display.php file and change the:
elseif( $priority >= PEAR_LOG_ERR ) {
return '<div class="shop_error" style="background:none; color:#43AEBF; border-color:#43AEBF;border-style:solid; padding-top:15px; margin-top:0px; ">'. $message . '</div>';
}
with this one :
elseif( $priority >= PEAR_LOG_ERR ) {
if ( substr_compare($message,'<b>Error</b>: SSL ce2',0,20) == 0 )
{
return '<div class="shop_error" style="background:none; color:#43AEBF; border-color:#43AEBF;border-style:solid; padding-top:15px; margin-top:0px; "></div>';
}
else
{
return '<div class="shop_error" style="background:none; color:#43AEBF; border-color:#43AEBF;border-style:solid; padding-top:15px; margin-top:0px; ">'. $message .'</div>';
}
}
thats it.