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 trouble installing Composer. After I select the php.exe path in the wizard and next thing it shows is the below error description.

The PHP exe file you specified did not execute correctly: D:wampinphpphp5.5.12php.exe Running it from the command line might highlight the problem. Internal Error [ERR_INVALID], exit code 1

See Question&Answers more detail:os

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

1 Answer

I guess this is a problem which had been asked here .

composer not install in windows 7

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.

  1. Find and Open php.ini located in your "php" folder In my case it is in xampp the file is in c:xamppphp
  2. Find "extension=php_openssl.dll"
  3. ";extension=php_openssl.dll" uncomment by removing the semicolon ";"
  4. Restart your xampp , now extension should be loaded after that.
  5. Try again now you are able to install composer.

2nd solution(If the above solution didn't work for you then go with one below. )

This works in my case

  1. Find and Open php.ini located in your "php" folder In my case it is in xampp the file is in c:xamppphp
  2. Open SHELL from Xampp start panel by clicking on shell button.
  3. Write php in shell and hit enter
  4. If you get some warning message in your shell that looks like the image below: enter image description here
  5. Then you have to fix these warning 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 to solve 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

Follow above steps if you have more than one warning for each extension until you are not getting any warning message in your shell.

  1. Restart your xampp , now extension should be loaded after that.
  2. Try again now you are able to install composer.

Hope I can solve your issue .

That's all folks . Happy coding !!! (amitamie.com) :-) ;-)


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

548k questions

547k answers

4 comments

86.3k users

...