Does not load the openssl extension PHP 7 WAMP SERVER

1

the openssl extension does not load, among other problems that cause me is that I can not access content in https with file_get_contents .

I execute the following code and it gives me false in openssl and wraper.

$w = stream_get_wrappers();
echo 'openssl: ',  extension_loaded  ('openssl') ? 'yes':'no', "<br>";
echo 'http wrapper: ', in_array('http', $w) ? 'yes':'no', "<br>";
echo 'https wrapper: ', in_array('https', $w) ? 'yes':'no', "<br>";
echo 'wrappers: ', var_export($w);

I have extension=php_openssl.dll uncommented in php.ini and allow_url_include = On something else I should do?

    
asked by Andress Blend 04.10.2017 в 19:21
source

0 answers