Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i spend three hours but did not reach anything. but i'm unable to connect ssl server.

I want to list what i'm did

first check my php extentions directory in order to check

php_openssl.dll

is there or not but it was there.

Then open my php.ini file but i could not see any extension=php_openssl.dll line to uncomment.

Also i searched on Google and see a people suffer from same problem with me. http://www.apachefriends.org/f/viewtopic.php?p=162623

However, i also have

OPENSSL_CONF C:/xampp/apache/bin/openssl.cnf 
...
openssl
OpenSSL support enabled 
OpenSSL Library Version OpenSSL 0.9.8l 5 Nov 2009 
OpenSSL Header Version OpenSSL 0.9.8l 5 Nov 2009

no lines . What will i do ? please share your suggestions.

share|improve this question

3 Answers

Yes, you must open php.ini and remove the semicolon to:

;extension=php_openssl.dll

If you don't have that line, check that you have the file (In my PC is on D:\xampp\php\ext) and add this to php.ini in the "Dynamic Extensions" section:

extension=php_openssl.dll

share|improve this answer
thank you! :) life saver. – Killrawr Jul 21 '12 at 12:14
You Sir, are a Hero!!!! – gran_profaci Mar 24 at 6:19
+1 Thank you so much! I spent more than a few hours trying to fix this problem! – Anthony Apr 28 at 19:46
[PHP_OPENSSL]
extension=php_openssl.dll

This is the answer.

share|improve this answer

I use xampp. Beforehand I tried the example file "test_smtp_gmail_basic.php" in phpMailer (you can download phpMailer here: https://github.com/Synchro/PHPMailer), but I got the following error:

Mailer Error: The following From address failed: xxx@gmail.com

After I commented out ; extension=php_openssl.dll in php.ini, it is working now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.