Jobeet for Symfony 2
I'm learning Symfony 2 with this tutorial from here. After loading the fixtures:
php app/console doctrine:data:load
I get this error:
[InvalidArgumentE开发者_开发知识库xception] Command "doctrine:data:load" is not defined.
Official site symfony.com has nothing about MODEL. Does anyone know any tutorials related to Jobeet?
thanks
You can find a jobeet tutorial for symfony 2 here: Symfony 2 Jobeet
Another fine tutorial for symfony 2.0 beginners
http://tutorial.symblog.co.uk/
It covers many topics which can be very useful.
It is particularly very good for those who wants to get quick intro of Symfony 2.0 as they have used earlier versions of symfony.
Hope it will help someone.
You need to install the Doctrine fixtures bundle to be able to load data fixtures in Symfony2 (which is what doctrine:data:load
is trying to do; there is a cookbook recipe found here (Symfony.com) that should get you started.
精彩评论