Reputation: 159
I'm trying to install Laravel, for that while installing Composer I am getting the problem mentioned below.
The PHP exe file you specified did not run correctly:
C:\xampp\php\php.exe
The php.ini used by your command-line PHP is: C:\xampp\php\php.ini
A duplicate setting in your php.ini could be causing the problem.
Program Output:
Warning: Module 'openssl' already loaded in Unknown on line 0
How can I overcome this?
Upvotes: 3
Views: 2458
Reputation: 541
I'm not sure how it got there, but you had the rule extension=php_openssl.dll
twice in your configuration.
I've uploaded a fixed version where I removed the second extension=
line here: http://pastebin.com/gtU8unAX
Upvotes: 3