我在IIS7中使用PHP(5.6.24)。我正试图设置laravel但是低于错误。
openssl扩展是SSL / TLS保护所必需的,但不是 可用。如果您无法启用openssl扩展,则可以 通过设置'disable-tls',您需要自行承担此错误的风险 选项为true。
在PHP.ini文件中启用了SSL扩展。
答案 0 :(得分:0)
确保php_openssl.dll
目录上有ext
路径可能是
php\ext\php_openssl.dll
如果使用xampp,路径可能会有所不同。
如果找不到,请从此处下载
http://www.opendll.com/index.php?file-download=php_openssl.dll&arch=32bit&version=5.4.3.0
然后将其移至ext
dir
然后更改php_openssl.dll
php.ini
路径
; Directory in which the loadable extensions (modules) reside.
; extension_dir = "./" #path should match ext dir
; On windows:
extension_dir = "ext"
...
extension=php_openssl.dll