0

I'm totally new to php, et I have to accomplish small project in few days. For the moment my problem is I can't integrate my php scripts with google calendar. I'm using Zend framework and I'm doing everything like in this(http://www.ibm.com/developerworks/library/x-googleclndr/) tutorial. I'm getting strange exception:

Uncaught exception 'Zend_Gdata_App_HttpException' with message 'Unable to Connect to ssl://www.google.com:443. Error #156366088: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?'

What could that be? I'm sorry if it's a nooby question. Thanks in advance.

Ashley
  • 5,939
  • 9
  • 39
  • 82
Orest
  • 1,857
  • 5
  • 19
  • 27

1 Answers1

0

As the error says, you need t enable ssl - it's easy, simply uncomment (remove the ;) from extension=php_openssl.dll in your php.ini

If you're using WAMP: configuring wampserver after installation to enable ssl

Community
  • 1
  • 1
Ashley
  • 5,939
  • 9
  • 39
  • 82
  • I've got this the same evening I posted this answer:) Thanks anyway for response, your answer is correct – Orest May 08 '12 at 12:06