Translate this page

Fix PHP Unable to find the wrapper “https” – did you forget to enable it when you configured PHP?

Here is how to fix Unable to find the wrapper “https” problem in PHP

In php development, you will encounter this error when trying to access an https url, to fix this – just add the below code to your ‘php.ini‘ file

extension=openssl

If you encounter this issue in phpstorm, you will need go to your php installation folder and find the php.ini file and change this:

;extension=openssl

To

extension=openssl

Related Posts

How to create a Database in MYSQL using PHP

Creating a database in MySQL using PHP is a common task that many web developers need to do. A database is a collection of data that is…

PHP: Get Visitors IP and Location and Save to TXT File

How to get visitors IP address and Location and save them to Text file in php This simple php code can be used to save visitors data…

Leave a Reply

Your email address will not be published. Required fields are marked *