Re: [symfony-users] Re: Translation request

2010-06-05 Thread Tugdual SAUNIER
French; "OK, en Français: - Nous avons besoin de développeurs symfony." ;-) Tugdual -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To

Re: [symfony-users] How do I know if a record is new in postSave function

2010-06-05 Thread Tugdual SAUNIER
why not use postInsert() ? Tugdual 2010/6/5 PachinSV > > I would like to know if there's a way to know if a record inserted is > new in the postSave function within a model? > > -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com > >

Re: [symfony-users] How can I use the sfWidgetFormDoctrineChoice widget as required true

2010-05-26 Thread Tugdual SAUNIER
try in the associated validator, it should be there. --- Tugdual 2010/5/26 Nei Rauni Santos > This is my code: > > $widgets['review_audiences_list'] = new > sfWidgetFormDoctrineChoice(array('multiple' => true, > 'expanded' => true, 'model' => 'ReviewAudience', 'order_by' => > array('weight',

Re: [symfony-users] Forms issue: Unknown "required" field

2010-03-03 Thread Tugdual SAUNIER
You define a field "type" here: $this->validatorSchema['type'] = new sfValidatorChoice(array( 'choices' => array_keys(Doctrine_Core:: getTable('member')- >getStates()), )); I guess it should be 'state' ... --- *Tugdual Sa

Re: [symfony-users] Re: Possible SQL injection

2010-02-25 Thread Tugdual SAUNIER
Works for me too. Regards, Tugdual -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@go

Re: [symfony-users] sfDoctrineGuard not working

2010-02-07 Thread Tugdual SAUNIER
Hi, In settings.yml: login_module: sfGuardAuth login_module without S ;-) Tugdual SAUNIER 2010/2/7 SamuelM > Hi > I followed all the instructions on the sfDoctrineGuard page step by > step on a fresh install of Symfony 1.4 with the only plugin being > sfDoctrin

Re: [symfony-users] Fermeture de site pour MEP

2010-01-20 Thread Tugdual SAUNIER
Bonsoir, Avez vous pensé à : ./symfony project:disable frontend prod ? Tugdual SAUNIER Le 20 janvier 2010 11:11, Eric Catinat a écrit : > Bonjour, > > Je cherche un moyen de fermer un site pendant une mise en prod. > Est-ce possible en ajoutant directement une commande dans

[symfony-users] Re: Problems getting no_script_name to work

2009-09-10 Thread Tugdual SAUNIER
Order allow,deny > allow from all > > Alias /sf "/usr/share/symfony/data/web/sf" > Replace "AllowOverride None" by "AllowOverride All" because with "AllowO

[symfony-users] Re: an intermitent bug, involving an error about favicon.ico

2009-09-10 Thread Tugdual SAUNIER
gt;> login page and stores the requested page in the session, which was the >>>> favicon. >>>> >> >>>> Once you sign in successfully, symfony recalls the remembered page and >>>> redirects to it. >>>> >>

[symfony-users] Re: an intermitent bug, involving an error about favicon.ico

2009-09-09 Thread Tugdual SAUNIER
t; > Once you sign in successfully, symfony recalls the remembered > page and > > redirects to it. > > > > An easy fix for your problem is adding a favicon.ico to your > document > > root. Also make sure that the login page doesn'

[symfony-users] Re: How can I custom the default css path

2009-09-09 Thread Tugdual SAUNIER
27;ll have to replace all >>> uses of stylesheet_path() in the framework. >>> >> Actually I think if you override one of the standard set of helpers, you >> have to override all of the functions of that helper set. >> >> >> >> > &

Re: R: [symfony-users] Re: doctrine admin generator: custom label and icon in object_actions

2009-08-10 Thread Tugdual SAUNIER
nd icon in the object_actions of the > doctrine admin generator? I would show an empty label with a custom > icon, but I can't find the correct method to set the generator.yml. I > tried label: "" or label: " " or icon: /mydir/myicon.png but no one > with success.

[symfony-users] Re: doctrine admin generator: custom label and icon in object_actions

2009-08-10 Thread Tugdual SAUNIER
ne admin generator? I would show an empty label with a custom > icon, but I can't find the correct method to set the generator.yml. I > tried label: "" or label: " " or icon: /mydir/myicon.png but no one > with success. > > Can you help me? > > Thank you

[symfony-users] Re: how to configuate webserver in ubuntu9.04 for symfony 1.2

2009-08-06 Thread Tugdual SAUNIER
, > I give this link in browser http://127.0.0.1:8080/index.php > > I got error message like > == > Not Found > > The requested URL /index.php was not found on this server. > Apache/2.2.11 (Ubuntu) PHP/5.2.6-3ubuntu4

[symfony-users] Re: Enabling apc query cache with doctrine in symfony 1.2

2009-08-03 Thread Tugdual SAUNIER
#x27;, > 'sfCompat10Plugin')); > > $manager = Doctrine_Manager::getInstance(); > $cacheDriver = new Doctrine_Cache_Apc(); > $manager->setAttribute(Doctrine::ATTR_RESULT_CACHE, $cacheDriver); > } > [...] > > but I get the error: > Fatal error: Clas