2

Warning: fsockopen() [function.fsockopen]: unable to connect to www.paypal.com:443 (Connection timed out)

This has worked previously? And suddenly has stopped working. Any ideas?

This is the call:

$fp = fsockopen ('www.paypal.com', 443, $errno, $errstr, 30);

Thanks for any help

Rhyso
  • 696
  • 2
  • 9
  • 20

1 Answers1

1

According to the error your system is providing, it's timing out on the outbound connection, are you currently able to connect to www.paypal.com on port 443 though something like telnet?

Running something like: telnet www.paypal.com 443 from the local box should show if it's connecting. I strongly suspect that something is blocking port 443 outbound, which is causing your issue, as it's unlikely that PayPal would block you for use of their IPN services.

  • Hi thanks for your response. Just tried connecting via telnet successfuly : telnet www.paypal.com 443 Trying 66.211.169.65... Connected to www.paypal.com. – Rhyso Jan 29 '11 at 16:02
  • heres the traceroute response from the server if this helps anybody help me! – Rhyso Jan 29 '11 at 17:13