Ben Kıvrılmaları kullanarak harici bir url yazı yapmak için çalışıyorum, externa sayfa kullanımı https, burada ben kullanıyorum sunucu azalan olduğunu
Sunucu Apache/2.2.11 (Win32) mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.3.0
dış url i yazı göndermek başka bir url bir yönlendirme yapmak, ama her şey ben bu hatayı alıyorum denemek
curl_errno = 35 ([güvenli bir site] bağlantı Bilinmeyen SSL protokolü hatası: 443)
bu yüzden tepki için kundakçı kontrol ve söylemek
http://localhost/3Party/PHP_VPC_3Party_Auth_Capture_Order_DO.php
: için kaynağı yüklenemedi
İşte kullanıyorum kodu
ob_start();
// initialise Client URL object
$ch = curl_init();
// set the URL of the VPC
curl_setopt ($ch, CURLOPT_URL, $vpcURL);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $this->postData);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_exec ($ch);
if (curl_error($ch)) {
$this->errorMessage =
"curl_errno=". curl_errno($ch) . " (" . curl_error($ch) . ")";
}
curl_close ($ch);