I already uncommented in php.ini:
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
;extension=php_oci8_11g.dll
extension=php_openssl.dll
;e
I figured it out and successfully installed Composer in My windows 10 PC.
I am sharing two solutions here.
There are some steps you have to follow in order to solve your problem.
1st solution.
php.ini
located in your "php" folder In my case it is in xampp the file is in c:\xampp\php\
"extension=php_openssl.dll"
";extension=php_openssl.dll"
uncomment by removing the semicolon ";"
2nd solution(If the above solution not work for you then go with below solution . )
This works in my case
php.ini
located in your "php" folder In my case it is in xampp the file is in c:\xampp\php\
php
in shell and hit enterThen you have to fix these waring message by commenting all these extension in your php.ini
file.(Actually cause of these warning messages are because more than one time these extensions are enabled but you can un-comment it in php.ini
file for solving the issue).
For Example which is in my case.
a). You can see in above image there is warning message for curl.
Module 'curl' already loaded in Unknown on line 0 .
b) To fix this find php_curl.dll
file in your php.ini
file and comment that extension by adding semicolon ";"
in front of that extension like this ;extension=php_curl.dll
Hope I can solve your issue .
That's all folks . Happy coding !!! (amitamie.com) :-) ;-)