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

梦想的初衷 提交于 2019-11-28 22:29:53

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.

mtmfahath
  1. Open xampp -> PHP -> php.ini

  2. Open the file php.ini in any text editor

  3. Press CTRL + F and Search for openssl

  4. Comment the line extension=php_openssl.dll by placing a semi-colon at the beginning: ;extension=php_openssl.dll

Note : If you want to enable it again remove the semicolon

I had the same problem and there were not multiple extension=php_openssl.dll in my case. The reason was because I had two copies of apache for some reasons, but I only used one.

I deleted the copy and changed the environment variable Path and OPENSSL_CONF to point to the correct webserver.

After restarting the webserver it worked! Make sure to restart all terminals and CMDs, otherwise the old environment variables are used and the error persists.

reinstall the xampp and give new location to the required bar in composor installation.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!