symfony-2.0

How stable or unstable is symfony 2.0 ?

Well, I know it's a preview, and I know it says that it's not yet ready for production, and yet I dare ask the question. I need to start building a pretty big application, which is planned to go live at around sep-oct 2010. Lets say I will not release the application to production until the stable version of symfony 2.0 will be release...

your experience using symfony 2.0

Hi, I'm going to start a new project that's building web apps from scratch. I have been thinking about using symfony framework for this project. Should I start using symfony 2.0 or stick with 1.4 ? I estimate this project will be finish on May or June this year but I realise that symfony 2.0 still on development. Which one I should ...

Symfony 2.0 - routing

Hi! How can I set up routing in symfony to be like that(if one rule won't work, next should be grabbed): /controller/action/param/param/param/... /admin/controller/action/param/param/param/... ("admin" is constant here - name of the bundle) I tried that: homepage: pattern: / defaults: { _bundle: HelloBundle, _contr...

symfony 2.0 stable enough to use?

i wonder if symfony 2.0 is stable enough to use? cause i never used symfony before. it seems that symfony 2 is much more better than the previous version and i dont want to relearn/recode everything some months from now. when do you think symfony 2.0 will be released? will it be a wise choice to use 2.0 now? ...

how to use console use in Symfony2

I found the console and run it like this: root@valugi-laptop:/var/www/sandbox/hello# php console Symfony version 2.0.0-DEV - hello Usage: Symfony [options] command [arguments] Options: --help -h Display this help message. --quiet -q Do not output any message. --verbose -v Increase verbosity of messages. --versi...

Symfony2: what Symfony git repository can I use to start a project ?

Hi Symfony devs, Can you give me some informations on how to create a new Symfony2 project please ? I started to get the symfony/symfony-sandbox from github as a tar-ball. Then I removed its old src/vendor content. I get latest vendor libs with git submodule. ( fabpot/Symfony, doctrine, migrations, ...). The problem is the sandbox ...

Fatal error: Declaration of registerContainerConfiguration must be compatible with that of Kernel::registerContainerConfiguration

Do anyone know why this occurs? as far I can get, the child class method is declared in the same way as parent's. Thanks! here is my kernel code: <?php require_once __DIR__.'/../src/autoload.php'; use Symfony\Framework\Kernel; use Symfony\Components\DependencyInjection\Loader\YamlFileLoader as ContainerLoader; use Symfony\Component...

Symfony 2 or Lithium?

The answer may be based on 4 aspects: 1.- simplicity: we all hate write tons of code for simple tasks like in java, this is the reason why we use php, importing design patterns from java/university world is good, but usually independent developers like me need dev speed more than enterprise employees. 2.- backend: how easy will be buil...

Doctrine Class Inheritance in XML

I'm trying to setup class inheritance using the Doctrine 2 ORM, but am getting errors (even when following their examples). I'm using the console from a Symfony 2 sandbox. The simple example uses the classes Person and Employee; An Employee extends Person. The error I'm getting when trying to generate the entities is: [Doctrine\ORM\M...

How to make custom sql log in symfony 2 and doctrine 2?

I need to add sql logging to work in native WebProfileBundle. When I do one default connection in application config, I see the sql queries in my log. But my application uses many connections to many db servers, so I can't add all the possible connections to config file. I create runtime connections, i.e.: $config = array( 'us...