I am trying to download symfony using composer as per the instructions on symfony website.
I keep getting this error:
chdir(): No such file or directory (errno 2)
I have googled and there are no references to this.
Any ideas on how to resolve this?
Are you following these steps:
1/
cd /htdocscd into the web directory (the folder where you want to install your symfony project)2/
curl -s http://getcomposer.org/installer | phpto download composer files.3/
php composer.phar self-updateto obtain the last version of Composer.4/
php composer.phar create-project symfony/framework-standard-edition ./Symfonyto install the files in a folder called symfony (You can change the last argument to whatever path you prefer to have the project in).