当前位置: 代码迷 >> 综合 >> Laravel5.5/6 报错call to undefined function openssl cipher iv length()
  详细解决方案

Laravel5.5/6 报错call to undefined function openssl cipher iv length()

热度:50   发布时间:2023-11-21 20:19:15.0

在安装laravel5.5后, 访问显示报错。 call to undefined function openssl cipher iv length()

经查为php7.1的OpenSSL扩展加载失败导致

恢复方法

  1.  检查http.conf  是否开启 LoadModule ssl_module modules/mod_ssl.so
  2. 检查php.ini是否开启  extension=php_openssl.dll
  3. 将php7.1要目录下的libeay32.dll和ssleay32.dll文件复制并替换到apache\bin目录下,再次启动Apache (注意事先备份一下Apache/bin目录下的相应文件)
  相关解决方案