Ben geliştirme ceritficates mükemmel çalışır aşağıdaki içeriğe sahip bir PHP dosyası var, ama bir üretim sertifikası PHP hataları geçmek ve aşağıda mesajı verir, ancak yalnızca bu zaman yaklaşık% 50 yapar. Çalışır, diğer 50%. Bu oluyor olabilir neden herkes biliyor musun?
<?php
// masked for security reason
$deviceToken = 'xxxxxx'; // jq
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', dirname(__FILE__)."/prod.pem");
$number = 5;
$fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
if (!$fp) {
print "Failed to connect $err $errstr\n";
}
else {
print "Connection OK\n";
$msg = $_GET['msg'];
$payload['aps'] = array('alert' => $msg, 'badge' => 1, 'sound' => 'default');
$payload = json_encode($payload);
$msg = chr(0) . pack("n",32) . pack('H*', str_replace(' ', '', $deviceToken)) . pack("n",strlen($payload)) . $payload;
print "sending message :" . $payload . "\n";
fwrite($fp, $msg);
fclose($fp);
}
?>
PHP hatası:
Uyarı: stream_socket_client () [function.stream-soket-client]: Yerel sertifika zincir dosya `/ var / www / vhosts / thissite.com / httpdocs / prod.pem 'kurulamıyor; Lütfen cafile / capath ayarları sertifika ayrıntıları ve hat 19 verene / var / www / vhosts / thissite.com / httpdocs / pushMessageLive.php içerdiğini kontrol edin
Uyarı: stream_socket_client () [function.stream-soket-client]: 19 hattı / var / www / vhosts / thissite.com / httpdocs / pushMessageLive.php bir SSL tanıtıcı oluşturmak için başarısız oldu
Uyarı: stream_socket_client () [function.stream-soket-client]: 19 hattı / var / www / vhosts / thissite.com / httpdocs / pushMessageLive.php içinde kripto etkinleştirmek için başarısız oldu
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Unknown error) in /var/www/vhosts/thissite.com/httpdocs/pushMessageLive.php on line 19 Failed to connect 0