• 15-04-2023, 15:03:21
    #1
    Herkese merhaba.

    Warning: fsockopen(): SSL operation failed with code 1. OpenSSL Error messages: error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed in /home/xxx/public_html/system/library/mail/smtp.php on line 89Warning: fsockopen(): Failed to enable crypto in /home/xxx/public_html/system/library/mail/smtp.php on line 89Warning: fsockopen(): unable to connect to ssl://smtp.yandex.com.tr:465 (Unknown error) in /home/xxx/public_html/system/library/mail/smtp.php on line 89
    Sistem cpanel. opencart sürümü 3.0.3.6. Gerekli tüm düzenlemeler yapıldı. 3 farklı SSL denendi. Bazı kaynaklar cpanel ile imkansız olduğunu söylüyor. Plesk panel kullanırken böyle bir sorun yoktu. Tecrübeli arkadaşların çözümlerini bekliyorum.
  • 15-04-2023, 15:44:00
    #2
    umitkatmer adlı üyeden alıntı: mesajı görüntüle
    // /home/xxx/public_html/system/library/mail/smtp.php
    
    // Eski
    $this->smtp = fsockopen($hostname, $port, $errno, $errstr, $timeout);
    
    // Yeni
    $context = stream_context_create(array('ssl' => array('verify_peer' => false, 'verify_peer_name' => false)));
    $this->smtp = stream_socket_client($hostname . ':' . $port, $errno, $errstr, $timeout, STREAM_CLIENT_CONNECT, $context);
    
    // Deneyin , olmazsa eski haline alın.
    // Eski $this->smtp = fsockopen($hostname, $port, $errno, $errstr, $timeout);
    Bu kod dizisi smtp.php’de mevcut değil.
  • 15-04-2023, 15:55:58
    #3
    Yardımlarınız için teşekkür ederim. Buldum ve değiştirdim.

    Sonuç.
    Notice
    : Undefined variable: port in /home/xxx/public_html/system/library/mail/smtp.php on line 90Notice: Undefined variable: timeout in /home/xxx/public_html/system/library/mail/smtp.php on line 90Warning: stream_socket_client(): unable to connect to ssl://smtp.yandex.com.tr: (Failed to parse address "smtp.yandex.com.tr:") in /home/xxxx/public_html/system/library/mail/smtp.php on line 90Notice: Undefined variable: handle in /home/xxxx/public_html/system/library/mail/smtp.php on line 92