Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 905
Mesogi Avatar asked Apr 17 '16 10:04

Mesogi


2 Answers

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.

like image 182
radonthetyrant Avatar answered Nov 08 '22 03:11

radonthetyrant


  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

like image 20
mtmfahath Avatar answered Nov 08 '22 02:11

mtmfahath