This will give the PHP info:
http://173.255.209.254/test1.php
Here is the original push notification code
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'apns_dev', '.pem');
// assume the private key passphase was removed.
stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);
$fp = stream_socket_client('ssl://gateway.push.apple.com:2195', $err, $errstr,30, STREAM_CLIENT_CONNECT, $ctx);
if (!$fp) {
print "Failed to connect $err $errstr\n";
return;
}
else {
print "Connection OK\n";
}
I always get Failed to connect 0