Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am installing composer with the following cammand

curl -s https://getcomposer.org/installer | php

But I am keep getting below error message

Zafars-MacBook-Pro:etc zafarsaleem$ curl -s https://getcomposer.org/installer | php
#!/usr/bin/env php
Some settings on your machine make Composer unable to work properly.
Make sure that you fix the issues listed below and run this script again:

The detect_unicode setting must be disabled.
Add the following to the end of your `php.ini`:
detect_unicode = Off

A php.ini file does not exist. You will have to create one.

How can I install composer be removing above error?

EDIT

Zafars-MacBook-Pro:etc zafarsaleem$ php --ini
Configuration File (php.ini) Path: /etc
Loaded Configuration File:         (none)
Scan for additional .ini files in: (none)
Additional .ini files parsed:      (none)

Latest Edit

After some research I found that php.ini file which is being used is in /etc/php.ini. However, when I checked this file in /etc folder it wasn't there. /etc folder contained php.ini.default folder which linked to /private/etc/php.ini.default. So I added detect_unicode = Off in /etc/php.ini.default and the renamed this file to php.ini. Now when I execute below command

curl -s https://getcomposer.org/installer | php

OR

sudo curl -s https://getcomposer.org/installer | php

Then I get following errors

Zafars-MacBook-Pro:/ zafarsaleem$ sudo curl -s https://getcomposer.org/installer | php
#!/usr/bin/env php
All settings correct for using Composer
Downloading...
Download failed: failed to open stream: Permission denied
Downloading...
Download failed: failed to open stream: Permission denied
Downloading...
Download failed: failed to open stream: Permission denied
The download failed repeatedly, aborting.

How can I install composer on my computer and remove above problems? Please help

share|improve this question
Whats wrong with the message? What concrete problem do you have? – KingCrunch Jan 21 at 11:26
It does not install composer. I need to add detect_unicode = Off in my php.ini file which I did but still I am getting the same error. – x4ph4r Jan 21 at 11:27
You edited the correct php.ini? Every SAPI use their own one. – KingCrunch Jan 21 at 11:27
I edited the one in etc/. That is the one which is loaded. – x4ph4r Jan 21 at 11:30
1  
I think the issue was that I was issuing command curl -s https://getcomposer.org/installer | php in a folder which did not have write privileges. Below answer helped me to solve this issue. – x4ph4r Jan 24 at 5:21
show 9 more comments

2 Answers

up vote 6 down vote accepted

To download / install on MacOSX:

  1. Goto a directory you can write to:

    cd ~

  2. get composer:

    curl -s https://getcomposer.org/installer | php

  3. move composer into a bin directory you control:

    sudo mv composer.phar /usr/local/bin/composer

  4. double check composer works

    composer about

  5. (optional) Update composer:

    sudo composer self-update

share|improve this answer

Try this instead and change the setting on the fly, just for this command

curl -sS https://getcomposer.org/installer | php -d detect_unicode=Off
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.