I'm using the 'manual install' method, I believe I've followed all steps correctly. I downloaded v1.6 from the FuelPHP home page, extracted, and uploaded to my (LAMP) web server. It's a fresh install, not an upgrade from a previous version.
When I run 'php composer.phar update', it returns instantly with no output. Is this expected?
When I try to access the site, it reports "Composer is not installed. Please run "php composer.phar update" in the root to install Composer". The same message is generated from 'php oil refine install', of course.
Following another suggestion, I tried changing the required monolog version in composer.json to 1.4, but it made no difference.
Is there any thing I can do to debug what is going on?
Thanks for the advice, Harro - today everything is working fine in my test environment which now has FuelPHP fully installed (with monolog 1.5).
Have you any suggestions what I could do about 'php composer.phar update' failing silently on the web server? (it comes back with a shell prompt immediately without any output). I can only guess a missing or misplaced file, but I've no idea how to investigate... any suggestions?
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 suhosin.executor.include.whitelist setting is incorrect. Add the following to the end of your `php.ini` or suhosin.ini (Example path [for Debian]: /etc/php5/cli/conf.d/suhosin.ini): suhosin.executor.include.whitelist = phar The php.ini used by your command-line PHP is: /etc/php5/cli/php.ini If you can not modify the ini file, you can also run `php -d option=value` to modify ini values on the fly. You can use -d multiple times.