Laravel undefined function openssl_encrypt()

后端 未结 9 2254
太阳男子
太阳男子 2020-12-09 05:49

I use laravel5.1 and it works fine on php cli. But i publish my porject to apache(version == 2.4), the problem happened.

FatalErrorException in Encryp

9条回答
  •  时光取名叫无心
    2020-12-09 06:05

    Follow the below steps:

    • In PHP 7.4.3 duplicate "php.ini-development" file and rename it to "php.ini"
    • Then, remove the semi-colons in front of "extension=openssl", "extension=mbstring", and "extension_dir = ext" inside the "php.ini" file.

    This worked for me and I hope it helps someone else.

提交回复
热议问题