Xampp Warning: Module 'openssl' already loaded in line 0

前端 未结 4 1635
逝去的感伤
逝去的感伤 2020-12-14 14:43

I have installed Xampp on windows 7. When I try to run code I get the error

Warning: Module \'openssl\' already loaded in line 0

4条回答
  •  有刺的猬
    2020-12-14 15:18

    You seem to have the line

    extension=php_openssl.dll
    

    twice in your php.ini file and/or subfiles.

    You need to find all relevant php.ini files in your xampp directory and remove or comment out one of the module directives like this:

    ;extension=php_openssl.dll
    

    After a server restart, this should solve it.

提交回复
热议问题