Install Composer for PHP with detect_unicode = Off as a php.ini file does not exist
If you are having problems installing Composer, using the method mentioned on their website:
curl -s https://getcomposer.org/installer | php
You may get an error like the following (which will be because PHP CLI may have a different php.ini or not be present at all)
#!/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
There are a few solutions online, but the easiest I found was on Stack Overflow. The problem is that the PHP CLI doesn’t load the same php.ini by default, and unlike on most Linux installations there isn’t a seperate php-cli.ini and seemingly /etc/php.ini.default doesn’t load so much. You can pass it as a runtime parameter though:
curl -s getcomposer.org/installer | php -d detect_unicode=Off
9 Comments
Leave a comment
Categories
- End of an era (@ Cineworld Northampton for Fast & Furious 6) http://t.co/lAR2ojQSt5
- I'm at World Vision HQ (Milton Keynes, Buckinghamshire) http://t.co/HzO6BQjmtN
- RT @RealLeeNelson: Northampton I hope this got Bradford out of your system! The luv is there!!! #ManOnStage #ScottylandFight http://t.co/EL…
- I'm at Cineworld Northampton for Star Trek Into Darkness 3D (Northampton, Northants) w/ 2 others http://t.co/i4XwheEZEy
- I'm at White Hart Hotel Taunton (Taunton, England) http://t.co/65FbNnLtNU
Recent Posts
- “Could not open configuration file /usr/local/zend/etc/sites.d/zend-default-vhost-80.conf”
- How to safely handle PHP “__toString() must not throw an exception”
- What does vagrant up do, where does the box get downloaded to?
- Convert non-Java Eclipse ADT project to Android project
- “Your proxy directory must be writable”





Thanks a lot, I was looking for this solution in the last couple of hours this evening.
Thank you for this solution. You saved me hours of possibly pulling my hair out
Thanks for this solution. Worked perfectly for me.
Life saver. Thanks a ton
THANK YOU, Works great!! Hats off
Thank you!
[...] でも、エラーになる。調べるとこれでイケそうなので、再度挑戦してうまくいく。 参考リンク: Install Composer for PHP with detect_unicode = Off as a php.ini file does not exist [...]
You rock! Many thanks for this simple work around.
Indeed, very helpful!