How do I fix the error ‘Unable to find the wrapper “https” – did you forget to enable it when you configured PHP?’
To solve this error, you need to install the OpenSSL package for PHP on your webserver.
On a FreeBSD server, you may need to install the following package: php53_openssl
and restart your webserver.
On a Windows server, open your php.ini config file and simply uncomment the following line:
;extension=php_openssl
and restart the webserver. The error should be resolved.