Re: [symfony-users] Symfony 2 - Pulling the pieces together

2010-09-20 Thread Richard D Shank
On 09/19/2010 06:21 AM, Donald Tyler wrote: Thanks for the info Richard. I am very familiar with MVC. My question was more specifically on how Symfony 2 is structured to support MVC. I could easily start right now and build a site using my own assumptions, but some best practice advice is

[symfony-users] I am not a symfoni-user.

2010-09-20 Thread Ivar Lind Bendixen
I am not a Symfoni-user. Sorry. Ivar Lind bendixen Fra: symfony-users@googlegroups.com [mailto:symfony-us...@googlegroups.com] På vegne af Richard D Shank Sendt: 20. september 2010 09:33 Til: symfony-users@googlegroups.com Emne: Re: [symfony-users] Symfony 2 - Pulling the pieces together

[symfony-users] problem for view image

2010-09-20 Thread nova
dear all.. I'm doing a final project in the form of e-commerce site using symfony 1.4, I dont understand about the function modules that we have made, if any web page have to make a link on every menu will be available at the website we make such as home, about us ... whether it should be a

[symfony-users] Doctrine Base Form Inheritance

2010-09-20 Thread Joe666
Hi, I have the following: class AnotherForm extends BaseArticleForm { public function configure() { parent::configure(); } public function setup() { parent::setup(); } } That class is defined as an additional form to the already generated ArticleForm and it's file lives

[symfony-users] Re: sfDynamicFormPlugin

2010-09-20 Thread Phil Moorhouse
I have a need for this, I've got something similar but in an sf1.0 app that obviously doesn't use the form framework, but it'd be great to have a plugin to make this simple. On 19 Sep, 11:04, juro fo...@juro.at wrote: Hi, I am thinking of developing a plugin that enables an admin to create

[symfony-users] automated response

2010-09-20 Thread Saad Tazi | Twist Image
Merci de votre message. Je suis présentement absent du bureau. Je serai de retour le 25 septembre. L'accès à mes courriels pourrait être limité durant cette période. En cas d’urgence, vous pouvez rejoindre notre équipe technique en envoyant un courriel à l’adresse suivante:

[symfony-users] ThunderBrowse is broking my application and probably yours too!

2010-09-20 Thread Nei Rauni Santos
Hi, guys, I'm having some problems today with a customer who use thunderbrowse plugin to thunderbird, my problem is that I'm using doctrineChoice to render some options like this: $widgets['review_audiences_list'] = new sfWidgetFormDoctrineChoice(array('multiple' = true, 'expanded' = true,

[symfony-users] Re: ThunderBrowse is broking my application and probably yours too!

2010-09-20 Thread Nei Rauni Santos
Looking at web_debug I can see the parameter holder is wrong: parameterHolder: action: index module: review review: { id: '', purpose_id: '2', other_purpose: '', review_audiences_list: ['true', 'true'], rating_room: '5', rating.. Now I'm thinking it's a bug on request objects..

[symfony-users] Re: How to create custom Doctrine data validation?

2010-09-20 Thread Derrek
Did you find the answer to this? I'm having the same problem. On Sep 15, 8:53 pm, David Park dpark...@gmail.com wrote: Hi All, I'm having problems creating a custom Doctrine data validation rule. After reading the Doctrine More Validation documentation

[symfony-users] Re: Symfony2PR3: Call to undefined method helloDevDebugProjectContainer::getService

2010-09-20 Thread Dennis Jacobfeuerborn
Thanks Fabien I'll probably go with $this-container- get('doctrine.orm.entity_manager') then. I also found the reason the entity isn't handled properly. Due to the copypasting from the example page the file was missing the ?php part at the beginning of the file hence the output to the terminal

Re: [symfony-users] Re: How to create custom Doctrine data validation?

2010-09-20 Thread David Park
Hi Derrek, I found the answer to this question by digging through the documentation. Based on the docs, symfony's default configuration settings don't enable all of Doctrine's validations. So you need to change the default configuration. I changed my system's configuration by adding the

[symfony-users] Deploy to Same Server?

2010-09-20 Thread Felix E. Klee
Is it possible to disable SSH in properties.ini? In the environment where I'm working, the production site is just in another directory. Same server, same user. Not optimal, I know. Could not find any exhaustive documentation for properties.ini. -- If you want to report a vulnerability issue

[symfony-users] Re: Deploy to Same Server?

2010-09-20 Thread Felix E. Klee
On Sep 20, 9:32 pm, Felix E. Klee felix.k...@inka.de wrote: Is it possible to disable SSH in properties.ini? Just looked at the source, and the answer is no. Of course, I could try defining some alias for ssh, but that would not be a robust solution. So, I'll just stick with SSH-ing to

Re: [symfony-users] Re: Deploy to Same Server?

2010-09-20 Thread Stéphane
You can overload the project:deploy task to feet your needs. Cheers, Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! On Mon, Sep 20, 2010 at 10:32 PM, Felix E. Klee felix.k...@inka.de wrote: On Sep 20, 9:32

[symfony-users] Official replacement for getParameter() in Symfony2PR3?

2010-09-20 Thread Dennis Jacobfeuerborn
I'm trying to get the Form stuff working and while I'm reasonably successfull I'm not sure I'm doing things the right way. The Documentation mentions the following: $this-getRequest()-getParameter('customer') This does not appear to be current anymore. What I replaced it with is:

Re: [symfony-users] Official replacement for getParameter() in Symfony2PR3?

2010-09-20 Thread Tim Nagel
I've been using $this-container-get('request') to get the request object. t On Tue, Sep 21, 2010 at 11:29, Dennis Jacobfeuerborn djacobfeuerb...@gmail.com wrote: I'm trying to get the Form stuff working and while I'm reasonably successfull I'm not sure I'm doing things the right way. The

[symfony-users] Re: Official replacement for getParameter() in Symfony2PR3?

2010-09-20 Thread Dennis Jacobfeuerborn
$this-container-get('XXX') and $this['XXX'] are apparently synonymous. The question is how to get the 'system' parameter if you are not supposed to use get() on the request object. On Sep 21, 3:32 am, Tim Nagel t...@nagel.com.au wrote: I've been using $this-container-get('request') to get the

Re: [symfony-users] Re: Official replacement for getParameter() in Symfony2PR3?

2010-09-20 Thread Tim Nagel
Fabien sent an email to this (might have been -dev) list explaining that most are the same but that container-get would be the quickest. As for not using get in the controller, I'm not sure. I've been using it and the world didnt end? t On Tue, Sep 21, 2010 at 11:43, Dennis Jacobfeuerborn

[symfony-users] Re: Official replacement for getParameter() in Symfony2PR3?

2010-09-20 Thread Dennis Jacobfeuerborn
The world may not end but if the comment says it should not be used then that begs the question what to use instead? Also I just found out that doing a $form-bind() apparently increases the request time from 100ms to 250ms...yikes! On Sep 21, 3:48 am, Tim Nagel t...@nagel.com.au wrote: Fabien