[symfony-users] specific apache directive by environment

2011-04-05 Thread Denis Fingonnet
answers Regards Denis Fingonnet -- 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 sym

Re: [symfony-users] Re: Fatal error: Class 'Doctrine\MongoDB\Connection' not found

2011-01-28 Thread Denis Fingonnet
The test succeeds, MongoDB PHP driver is installed. On Thu, Jan 27, 2011 at 6:34 PM, Damon Jones wrote: > Make sure that you have installed the MongoDB PHP driver. If so, you > should be able to test it with a plain PHP script: > > $m = new Mongo(); > > http://us2.php.net/manual/en/book.mongo.p

Re: [symfony-users] Where to store class files (project level vs. app level, vs. module level)

2010-04-23 Thread Denis Golovin
I think that all tutorial examples assumes that you have only two applications: frontend and backend (or even single frontend). Obviously, if you have three or more applications - it will be better, if you put application classes separately. I'm not so sure about modules, but application level shou

Re: [symfony-users] noob url variable question

2010-04-22 Thread Denis Golovin
You can get id in your action: $id = $request->getParameter('id'); and use this id for any queries you like. 2010/4/23 bklshblues : > I'm a symfony beginner and I'm looking for some help on what's > probably a very obvious question. I want to use a variable in my url, > where the variable is t

Re: [symfony-users] Somebody, working with Filters?????

2010-04-22 Thread Denis Golovin
Filter - is the same thing as form. Just use something like: $filter = new YouClassFormFilter(); echo($filter); and if you have field 'created_at' at YouClass - you'll obtain such filter. 2010/4/22 Germana Oliveira : > I need filter a 'created_at' field.. thanks > > -- > Germana Oliveira >

[symfony-users] many-to-many with Doctrine

2010-04-10 Thread Denis
: Group: id: .. Item: group_id: ... relations: ItemParentGroup: onDelete: CASCADE class: Group local: group_id foreign: id foreignAlias: GroupItems How should I tell Doctrine about many-to-many? Denis -- If you want to report a

Re: [symfony-users] sfOutputEscaper behaviour

2010-04-05 Thread Denis Golovin
Did you try to set escaping-strategy = off in the settings.yml of single module? Denis 2010/4/5 Apul Gupta : > Hi, > > Actually, I want to show some HTML text from the database to a > template. > > I am using > echo $sf_data->getRaw('sf_content'); > > t

[symfony-users] sf_culture 'uk' => 'ua'

2010-04-01 Thread Denis
Hi, I have Symfony based site with URLs like "www.site.com/uk/smth1/ smth2/..." 'uk' - is the name of Ukraine localisation. The question is: how can I change 'uk' in URL (for Ukraine localisation) to 'ua'? -- If you want to report a vulnerability issue on symfony, please send it to security at

Re: [symfony-users] a question about routing framework :P

2010-04-01 Thread Denis Golovin
Did you try something like this: some_route: url: /:module-:actions-:id 2010/4/1, Lee Joseph : > as I know routing framework in symfony which separates url information > with slash '/' or dot '.' like > > some_route: > url: /:module/:actions/:id > > > I just want know is there anything I c

Re: [symfony-users] Re: Credentials problem

2010-03-25 Thread Denis Golovin
I'm not shure, but I think you need to check sfUser credentials by youself. -- 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 th

[symfony-users] Custom Fields in sfGuardUser list filters

2009-07-23 Thread Denis Fingonnet
; $a = $q->getRootAlias(); > $q->innerJoin($a . '.SenditUser su') > ->andWhere('su.sendit_customer_id = ?', $value); > } > return $q; > } > > } > It doesn't work and I can't find anything usefull on google.

[symfony-users] Re: Doctrine utf8 encoding for plugins

2009-04-24 Thread Denis Fingonnet
up On Tue, Apr 21, 2009 at 11:38 AM, Denis Fingonnet wrote: > Hi all, > > I'd like to create all tables using an utf8_unicode_ci collate and an > utf8 charset for plugins (sfDoctrineGuardPlugin for exemple). > Is there a way to do this. > > I added : > - encoding: u

[symfony-users] Doctrine utf8 encoding for plugins

2009-04-21 Thread Denis Fingonnet
n the project schema.yml file. Any ideas ? -- Denis Fingonnet --~--~-~--~~~---~--~~ 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@googlegroups.com To u

[symfony-users] [sfDoctrineNestedSetManagerPlugin] Installation problem

2009-02-27 Thread Denis Fingonnet
valid packages found As you could see the dependencies excludes the sfDoctrinePlugin 2 which is the installed version on sf 1.2.5DEV. Is it normal ? Because the plugin page says that it is compatible with the sf branch 1.2 and the sf 1.2.0 release already contains the sfDoctrinePlugin version 2. Any

[symfony-users] Re: sfWidgetFormTextareaTinyMCE() not working

2009-02-27 Thread Denis Fingonnet
'fr')); //embends English and French > //set labels so it's clearer > $this->widgetSchema->setLabel('en', 'English'); > $this->widgetSchema->setLabel('fr', 'French'); > > > Then in StaticPageI18nForm.class.php

[symfony-users] Re: sfWidgetFormTextareaTinyMCE() not working

2009-02-27 Thread Denis Fingonnet
ss' => 'tinyMCE' )); It works very well. So it is not a bug but a lack of documentation about I18n and widget or I didn't get it... And a bad error message. On Fri, Feb 27, 2009 at 2:28 PM, Denis Fingonnet wrote: > I'll keep an eye on it. > &g

[symfony-users] Re: Disable JS events until page fully loads

2009-02-27 Thread Denis Fingonnet
errors as the JS file is not found yet... > > How can I fix this generically? > > I want to disable all JS events like onclicks and onmouseovers until > page is loaded...i will enable them in window.onload()... > > > -- Denis Fingonnet --~--~-~--~~

[symfony-users] Re: sfWidgetFormTextareaTinyMCE() not working

2009-02-27 Thread Denis Fingonnet
I'll keep an eye on it. Thank you On Fri, Feb 27, 2009 at 1:43 PM, Crafty_Shadow wrote: > > Ticket with patch created, the rest is up to fabien: > > http://trac.symfony-project.org/ticket/5986 > > > -- Denis Fingonnet --~--~-~--~~~---~

[symfony-users] Re: sfWidgetFormTextareaTinyMCE() not working

2009-02-27 Thread Denis Fingonnet
Hello Schorsch, Could you tell us : Where you put the tinyMCE dir ? How you set up the TinyMCE dir in the app.yml ? And what files you copy in the web/js dir ? Thx Denis On Fri, Feb 27, 2009 at 11:29 AM, Schorsch wrote: > > Hey, > > did you set up the TinyMCE Dir in the app.yml

[symfony-users] Re: sfWidgetFormTextareaTinyMCE() not working

2009-02-26 Thread Denis Fingonnet
"tiny_mce", >>width: "550px", >>height:"350px", >>theme_advanced_toolbar_location: "top", >>theme_advanced_toolbar_align: "left", >>theme_adva