Re: [symfony-users] Symfony2 : Load files under "Ressources/config" to the DI container

2010-07-11 Thread Bernhard Schussek
Hi, > i tried to load the ValidatorService, > add this to my config file, but it doesn't work, > web.config: >   validator: true This should be web.config: validation: true Bernhard -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

Re: [symfony-users] csrf token required

2010-07-11 Thread Bernhard Schussek
Probably you forgot to render the hidden fields. Check the HTML source whether a hidden field with the name __csrf_token is present. If not, add the following in your template: renderHiddenField() ?> Bernhard -- If you want to report a vulnerability issue on symfony, please send it to security

Re: [symfony-users] Symfony2 comments and questions

2010-07-11 Thread Bernhard Schussek
2010/7/11 Tarjei : > 8. Forms > One thing I see the form framework has addressed is grouping of > fields. What I still miss is simple widgets for adding html around a > set of elements or just at a point in the form. The purpose of the form framework is not to generate the HTML for the whole form,

[symfony-users] What is the use of --env option in admin module generation?

2010-07-11 Thread Xensor
Hi all, This option is available in this command: php symfony doctrine:generate-admin But since everything is accessible in both development and production environments by changing the url, for example: Development environment: http://jobeet.localhost/backend_dev.php/job Production environment

[symfony-users] Symfony2 : Load files under "Ressources/config" to the DI container

2010-07-11 Thread gordonslondon
Hi everybody, There's a Ressources directory: "Symfony/Bundle/FrameworkBundle/ Ressources/Config" who contains many files (debug, templating, validator, etc ..) I would like to know what is the easiest way, to load a service to the Container ? i tried to load the ValidatorService, add this to my

Re: [symfony-users] symfony and Eclipse: I can not go to the function or class using F3.

2010-07-11 Thread Alan Bem
On Sun, Jul 11, 2010 at 8:29 PM, samuel wrote: > Is netbeans supporting symfony2 ? > no -- 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

Re: [symfony-users] symfony and Eclipse: I can not go to the function or class using F3.

2010-07-11 Thread samuel
Is netbeans supporting symfony2 ? 2010/7/11 Mariano Sola > sorry for the question, but why using eclipse? > > please check this short video and let me know your thoughts! ;-) > > > http://www.symfony.es/2009/11/04/screencast-del-soporte-de-symfony-en-netbeans-6-8/ > > regards > > > On Sun, Jul 1

Re: [symfony-users] symfony and Eclipse: I can not go to the function or class using F3.

2010-07-11 Thread Mariano Sola
sorry for the question, but why using eclipse? please check this short video and let me know your thoughts! ;-) http://www.symfony.es/2009/11/04/screencast-del-soporte-de-symfony-en-netbeans-6-8/ regards On Sun, Jul 11, 2010 at 12:58 PM, Stéphane wrote: > Hi, > > Check that your lib folders a

Re: [symfony-users] Re: csDoctrineActAsSortablePlugin - promote to symfony 1.4

2010-07-11 Thread Kamil Gryniewicz
Thanks! On Sun, Jul 11, 2010 at 5:54 PM, gimler wrote: > for symfony 1.4 use this svn branch it work 100% i use it ;) > > http://svn.symfony-project.com/plugins/csDoctrineActAsSortablePlugin/branches/1.4/ > > On Jul 11, 12:57 pm, sieboje wrote: > > Is it possible to use csDoctrineActAsSortabl

Re: [symfony-users] symfony and Eclipse: I can not go to the function or class using F3.

2010-07-11 Thread Stéphane
Hi, Check that your lib folders are source folders. Cheers, Before Printing, Think about Your Environmental Responsibility! Avant d'Imprimer, Pensez à Votre Responsabilitée Environnementale! On Sun, Jul 11, 2010 at 5:56 PM, Javier Garcia wrote: > Hi, > > Im using Eclipse (Build id: 20090920-1

[symfony-users] symfony and Eclipse: I can not go to the function or class using F3.

2010-07-11 Thread Javier Garcia
Hi, Im using Eclipse (Build id: 20090920-1017) to write my symfony web app and in many times I can not "go" to the declaration of functions or classes (you know placing the cursor where the class or the function is called and then pressing F3). For example: I have this class: class UsuarioFormFi

[symfony-users] Re: csDoctrineActAsSortablePlugin - promote to symfony 1.4

2010-07-11 Thread gimler
for symfony 1.4 use this svn branch it work 100% i use it ;) http://svn.symfony-project.com/plugins/csDoctrineActAsSortablePlugin/branches/1.4/ On Jul 11, 12:57 pm, sieboje wrote: > Is it possible to use csDoctrineActAsSortablePlugin with symfony 1.4? -- If you want to report a vulnerability is

[symfony-users] Re: sfEasyGMapPlugin: Mulitple maps on one page

2010-07-11 Thread Mathieu Comandon
I've submitted a quick n'dirty patch on the plugin's bugtracker, for those who want to integrate it manually, here's what it looks like : -- --- GMap.class.php +++ GMap.class.php2 @@ -87,6 +87,7 @@ protected $parameters = array( 'js_name' => 'map',

[symfony-users] csDoctrineActAsSortablePlugin - promote to symfony 1.4

2010-07-11 Thread sieboje
Is it possible to use csDoctrineActAsSortablePlugin with symfony 1.4? -- 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 gro

[symfony-users] csrf token required

2010-07-11 Thread Samuel Morhaim
Hi, I am getting a Csrf Token required error, but not sure why. This is a very simple form, made the same way I've made many other forms but never got this error before. What should I be checking for? Thanks. -- If you want to report a vulnerability issue on symfony, please send it to security

Re: [symfony-users] Symfony2 comments and questions

2010-07-11 Thread Alan Bem
I am aware of that bundle, and I like http://github.com/pminnieur/SecurityBundle better - it's more transparent and decoupled from Doctrine2. What I'm waiting for is some kind of official line about security bundle. On Sun, Jul 11, 2010 at 4:24 PM, Richard D Shank wrote: > > On 07/11/2010 06:53

Re: [symfony-users] Symfony2 comments and questions

2010-07-11 Thread Richard D Shank
On 07/11/2010 06:53 AM, Alan Bem wrote: +1 on GuardBundle/SecurityBundle :) \ There is a version started already http://symfony2bundles.org/knplabs/DoctrineUserBundle -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received th

Re: [symfony-users] Symfony2 comments and questions

2010-07-11 Thread Alan Bem
+1 on GuardBundle/SecurityBundle :) On Sun, Jul 11, 2010 at 1:17 PM, Tarjei wrote: > Hi, here are my initial questions and comments regarding Symfony2. > > They have been written over a period of about a week as I evaluated if > I wanted to try to use Symfony2 for a rewrite of an application I g

Re: [symfony-users] Abridged summary of symfony-users@googlegroups.com - 5 Messages in 4 Topics

2010-07-11 Thread joost . farla
Beste, Vrijdag 9 en maandag 12 juli ben ik niet aanwezig op kantoor. U kunt voor dringende zaken contact opnemen met Dimitri van Hees: dimi...@freshheads.com of 013 5448761. Met vriendelijke groet, Joost Farla joost.fa...@freshheads.com - - freshheads grafisch ontwerp en internet applicaties

[symfony-users] Symfony2 comments and questions

2010-07-11 Thread Tarjei
Hi, here are my initial questions and comments regarding Symfony2. They have been written over a period of about a week as I evaluated if I wanted to try to use Symfony2 for a rewrite of an application I got. The comments are not prioritized and not perfectly organized. 1. Deployment. Are you pla

[symfony-users] Re: development cycle problems

2010-07-11 Thread Dennis
Wow, I guess I've been a member of this group for a while and forgot about it. I'll have to check my settings and see why I don't even get digest. BUT, as to my code problem, I found it. It was the interface unit between the keyboard and the screen . . me. I had added 'createdb' privilege to my no