Re: [symfony-users] how create empty module

2010-10-05 Thread Jérémie
Le lundi 04 octobre 2010 à 17:09 -0700, Martin Ibarra Cervantes a écrit : hi, thanks Jérémie but the error is because i use doctrine:generate-module. i read the documentation symfony generate:module aplication module is only generate:module and not doctrine:generate-module thanks for

[symfony-users] Re: Propel route: new object with foreign key (sf 1.3.7)

2010-10-05 Thread Massimiliano Arione
On 4 Ott, 18:53, Christian alice...@googlemail.com wrote:   So, i have to create a new route and modify the executeNew action? Is there no way to use the default @offer_refurbishment_new route? You can use the default route, just pass any added parameter as query string. E.g.:

[symfony-users] Re: Propel route: new object with foreign key (sf 1.3.7)

2010-10-05 Thread Christian
hmm, doesnt work. link_to(add refurbishment, '@offer_refurbishment_new?offer_id='. $offer-getId()) generates: http://domain.tld/backoffice_dev.php/offer_refurbishment/new.html why? any idea? On 5 Okt., 15:17, Massimiliano Arione garak...@gmail.com wrote: On 4 Ott, 18:53, Christian

[symfony-users] Re: Edit form data does not update

2010-10-05 Thread guiguiboy
Hi, Have you read : http://www.symfony-project.org/forms/1_4/en/ chapter 1 and 2 ? Guillaume On 4 oct, 21:49, Social It social@gmail.com wrote: My edit form does not update when I make changes to it. I have to wait a couple of seconds and hit refresh. Same with a page that queries the

[symfony-users] London Symfony Lightning Talks - November 9th

2010-10-05 Thread cleve
A couple of us are organising a symfony meetup in London and thought it would be awesome to get some people to do some lightning talks on symfony usage. We're especially keen on anyone's experience with symfony2 (but anything symfony'ish would be great). If each of us breaks off a small piece of

Re: [symfony-users] Re: Propel route: new object with foreign key (sf 1.3.7)

2010-10-05 Thread Daniel Lohse
Nope, that won't work because the named route doesn't take or expect a real parameter and you're providing it your offer_id. Try this: link_to(add refurbishment, '@offer_refurbishment_new', array('query_string' = 'offer_id='.$offer-getId())) But you'd be much better served if you just

[symfony-users] Proof of concept of Symfony2 in multitier architecture

2010-10-05 Thread Benoît
Hello, I'm working in a company where IT architects advocate 3-tier architecture. The main reason is security. Those same architects usually defines 3-tier architecture with JAVA technologies like this : - A frontend server (Presentation tier) listens to HTTP requests and creates the HTTP

Re: [symfony-users] how create empty module

2010-10-05 Thread Diego Bello
On Mon, Oct 4, 2010 at 4:34 PM, Martin Ibarra Cervantes ibarra.cervan...@gmail.com wrote: Hi, i need a empty module on my application but when try this m...@sopias ~/code/Projects/php/retratos/trunk $ ./symfony doctrine:generate-module public feed display this error symfony

[symfony-users] Problem with Lucent output data search in Doctrine

2010-10-05 Thread daniel cardona
Hello again ;-) As I see that most people recommend Lucent Search, I have decided keep trying to include it in my project, using the manual as jobeet reference. At the most I've come to is that some files called Segments under data / index / are updated, but only shows me a few strange

[symfony-users] Problem trying to do propel:build-all-load

2010-10-05 Thread Javier Garcia
Hi, i have just installed symfony, created a propel project (--orm=propel) and an frontend app. After doing propel:build-all-load i get several error messages: PHP Warning: Invalid argument supplied for foreach() in /opt/lampp/

[symfony-users] Having a web layer for the model

2010-10-05 Thread Sebastien Armand [Pink]
Most of the times in symfony applications, we'll have a model let's say it's 'Product' and then many interactions that I don't think belong to the model part of the application still would be really convenient if you could write them as $myModel-doThis() The kind of interaction I'm thinking about