underscore666
underscore666

Reputation: 1739

How to install a project using symfony

I am trying to install on my local machine the following project connect which is using symfony2. I did perform the following commands:

cd myWebDirectory
git clone git://github.com/dsyph3r/connect
git submodule update --init

When I try to call the following page from my localhost I get the following error:

http://localhost/~myName/connect/web/app_dev.php
Server error

If I look to the logs file of apache I read:

PHP Fatal error:  require_once(): 
Failed opening require
'/Users/myName/Sites/connect/app/../vendor/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php'

How should I install the vendor?
What I did miss?

Upvotes: 2

Views: 744

Answers (1)

KingCrunch
KingCrunch

Reputation: 131821

You forgot to install the vendor ("third party") libraries.

php bin/vendor install

Update: It's a while ago, since I wrote this and it's not valid anymore (for new(er) projects). Since 2.1 it uses Composer

php composer.phar install

Upvotes: 1

Related Questions