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?