Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

This is the same code I have run on the pc before, all I have done is reinstalled Win 7 and a clean install of XAMPP

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...