Oliver Spryn
Oliver Spryn

Reputation: 17348

Enable SSL in PHP fsockopen()

I am using PHP fsockopen() to finalize a payment between my server and PayPal. However, when I try to use an SSL connection, I get this error:

Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://:443 
(Unable to find the socket transport "ssl" - did you forget to enable 
it when you configured PHP?)

I am sure that my call to the fsockopen() method is correct, as it worked correctly before I upgraded PHP on my development server.

It is important that this connection is encrypted, so I can't work around this.

I can't find any config about fsockopen() SSL connections in my php.ini file. Could anyone direct me to it?

Thank you for your help,
spryno724

Upvotes: 3

Views: 12547

Answers (2)

rasjani
rasjani

Reputation: 7970

It means that either your SSL module wasn't compiled with the rest of the PHP or it was compiled but its not enabled via the php.ini ..

Starting point: see what phpinfo() says about ssl ?

Upvotes: 5

Unsigned
Unsigned

Reputation: 9916

What OS are you using? If a *nix platform, PHP was likely compiled without SSL support. If its Windows, I'd check to make sure the SSL module is enabled in php.ini

Upvotes: 2

Related Questions