Reputation: 113
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:\wamp\bin\php\php5.5.12\php.exe Running it from the command line might highlight the problem. Internal Error [ERR_INVALID], exit code 1
Upvotes: 11
Views: 64357
Reputation: 751
In my case it was because I was running with XDebug, and it was stopping on a breakpoint in my IDE. So, actually, it was working fine! I just needed to remove XDebug for a while from php.ini.
Upvotes: 1
Reputation: 7
There's no two ways about it. Just go to PHP.ini and comment the mention errors you have on your cmd or shell after typing PHP in it.simple as that problem solved.
Upvotes: 1
Reputation: 23
This worked for me when I got this error: The PHP exe file you specified did not run correctly: C:\xampp\php\php.exe
Program Output: PHP: syntax error, unexpected '(' in C:\xampp\php\php.ini on line 1602,
After trying all the above answers: I open the php.ini file with a code editor and located line 1602 and I saw
error_reporting(1) around the eval().
so I commented on it using ;
;error_reporting(1) around the eval().
and my composer installed successfully.
Upvotes: 0
Reputation: 11
This worked for me..,
Upvotes: 1
Reputation: 551
Go to your xampp\php\php.ini
Press Ctrl+f to find extension=intl
and comment it out using ;
;extension=intl
Try and install your composer.exe.
Upvotes: 0
Reputation: 873
There are some steps you might want to follow in order to solve your problem
You can try to change extension_dir
in xampp\php\php.ini
to full direction
like :
extension_dir = "E:\xampp\php\ext"
Install it manually Is there any way to install Composer globally on Windows? or you can do it by open XAMPP Shell and write this
php -r "readfile('https://getcomposer.org/installer');" | php
Just install it in C:\
partition, I think it will work .
I think the problem its in the Windows8 and above that not give Full permission to use CMD
.
Upvotes: 6
Reputation: 664
This worked for me!
path/to/xampp/php
and open php.ini
extension=php_mcrypt.dll
and comment that by putting semicolon (;)
. Like Replace extension=php_mcrypt.dll
With ;extension=php_mcrypt.dll
php.ini
composer
again and it should work OK.Upvotes: 0
Reputation: 131
You need to install the "Visual C++"
https://www.microsoft.com/en-us/download/details.aspx?id=30679
Upvotes: 0
Reputation: 817
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.
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 didn't work for you then go with one below. )
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 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
Hope I can solve your issue .
That's all folks . Happy coding !!! (amitamie.com) :-) ;-)
Upvotes: 14
Reputation: 1
This works for me.
Drive_name://xampp/php
extension=msql.dll
to ;extension=msql.dll
and extension=msql.so
to ;extension=msql.so
Upvotes: 0
Reputation: 131
There's following step you have to made.
;extension=php_openssl.dll
add semi-colon in first and retry again to install composer
Upvotes: 0
Reputation: 1
You are getting this error because some dll file which is specified in the php.ini is missing. So do the following steps to fix it.
Open command prompt and type php and hit enter.
It will try to execute php and will throw warnings and errors. For example in my case it was like below: Error
Now, based on the error, go ahead and comment the extension (listed in the above command) in php.ini file. For example in my case I commented extension=php_mysql.dll to ;extension=php_mysql.dll
Now try to install the composer again, it should work.
Note: If not repeat the process again, may be there are more then one extensions in php.ini are creating the problem in your case, but at cmd, php might give only one error at once.
Note: Once you have installed composer you can go ahead and uncomment all the line which you had commented.
Upvotes: 0