You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
The tls:// scheme causes Google App Engine to freak out, but changing them to ssl:// works fine.
I get an error like this:
stream_socket_client(): unable to connect to tls://gateway.push.apple.com:2195 (Unable to find the socket transport "tls" - did you forget to enable it when you configured PHP?)
I imagine this is down to App Engine not supporting TLS or me failing to have found how to enable it.
Hey folks, just thought I'd make you aware of an issue I found while working with this library.
This breaks in Google App Engine because of the hard-coded URIs in
ZendService\Apple\Apns\Client\Message
.https://github.com/zendframework/ZendService_Apple_Apns/blob/master/library/ZendService/Apple/Apns/Client/Message.php#L33
The
tls://
scheme causes Google App Engine to freak out, but changing them tossl://
works fine.I get an error like this:
I imagine this is down to App Engine not supporting TLS or me failing to have found how to enable it.
Cheers.
Edit: https://cloud.google.com/appengine/docs/php/#PHP_Stream_support
Looks like it's not meant to support either, but magically works with SSL.
The text was updated successfully, but these errors were encountered: