[symfony-users] Re: Problèmes de connexion lors du déploiement sur un serveur (PDO Connection Error: SQLSTATE[ 28000] [1045] Access denied for user)

2010-05-12 Thread François
Personne n'a une idée ? On May 11, 1:08 pm, François wrote: > Bonjour, > > Pour pouvoir tester la confirmation de créations des membres par > email, j'ai voulu ajouter mon projet sur mon serveur, et comme vous > vous en doutez, ça plante. > > Tout d'abords, aucun problème en local. > > J'ai créé

[symfony-users] Re: sfVideoPlugin

2010-05-12 Thread Winnie
Hello, I see on the flowplayer website http://flowplayer.org/documentation/index.html ( On the bottom ) that any format goes. So that's why i wonder if it can read other format that flv On 11 mai, 18:23, Eno wrote: > On Tue, 11 May 2010, Winnie wrote: > > Does anyone using sfVideoPlugin to embed

[symfony-users] sfFormLanguage displaying languages in their respective language

2010-05-12 Thread HiDDeN
Is there a way to display languages using sfFormLanguage, but in their respective language? I mean, instead of this: English, French, Spanish I want this: English, Français, Español -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You

Re: [symfony-users] Re: Jobeet tutorial | Day 3 | doctrine:insert-sql

2010-05-12 Thread Kim Rowan
Hi Graham Thanks for your response. I have followed all the instructions to the letter; my config/databases.yml file looks like this: all: doctrine: class: sfDoctrineDatabase param: dsn: 'mysql:host=localhost;dbname:jobeet' username: root password: secret I apprecia

[symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin with sfWidgetFormDoctrineJQueryAutocompleter (sfFormExtraPlugin)

2010-05-12 Thread Luc Didry
Hello, I'm using the ahDoctrineEasyEmbeddedRelationsPlugin to embed and clone forms but there is a problem with some fields : if there is a "blabla" element, this element is not cloned and the javascript event obviously doesn't work. These problematic fields are using the sfWidgetFormDoctrineJQue

[symfony-users] urgen_send_mail

2010-05-12 Thread safa boubekri
hello every body please help me i make this code public function executeCreate(sfWebRequest $request) { $this -> formpersonne= new PersonneForm(); $this->form = $this->configuration->getForm($this->personne); $head = "From: Admin <.$email_admin.>\n"; $mail = $this->formpersonne['Emai

[symfony-users] Re: Question about choice widget

2010-05-12 Thread Tom Ptacnik
What about something like ul.radio_list li {display: inline} On 10 kvě, 15:41, Javier Garcia wrote: > On Mar 29, 3:09 pm, Massimiliano Arione wrote: > > > You jsut need to customize your css, forcing your li's as inline. > > No need to modify your template or your formatter. > > I'd like to for

[symfony-users] Re: Search field problem

2010-05-12 Thread Tom Ptacnik
It looks like you don't use a Symfony forms stuff .. form class? I think the problem is somewhere in the processing the form, so the template part woun't help us. How is your form processed? On 11 kvě, 02:00, Greg Blackett wrote: > Dear users, > I am experience an issue with a search field. Whe

Re: [symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin with sfWidgetFormDoctrineJQueryAutocompleter (sfFormExtraPlugin)

2010-05-12 Thread Daniel Lohse
That's a tough case for sure. I'm the plugin developer although the jQuery integration wasn't provided by me. What exactly is not working? I know that we have problems when trying to embed forms that contain select boxes. What error is thrown? You'd have to give me more information. Thing

[symfony-users] Re: Alternate layout and a tables doubt (2 doubts in one mail!)

2010-05-12 Thread Tom Ptacnik
It's only about css ... give them float: left On 11 kvě, 06:44, Parijat Kalia wrote: > Thanks Eno! > Any clue about the tables doubt? > > > > > > On Mon, May 10, 2010 at 8:58 PM, Eno wrote: > > On Mon, 10 May 2010, Parijat Kalia wrote: > > > > Hey everyone, > > > > Doubt 1: Symfony layout > > >

[symfony-users] Re: Question about filter forms: search for exact words

2010-05-12 Thread Tom Ptacnik
Check if the query is correctly created.. maybe I write it down badly. Try to change the line with the query to $query->andWhere($query->getRootAlias().'.'.$fieldName.' LIKE ?', $value); and then if it's still not ok try to look what echo $query- >getSqlQuery();die; will show you... On 11 kvě, 1

[symfony-users] Re: Missing parent::configure() in built form filter

2010-05-12 Thread Tom Ptacnik
If you want to modify the class in the plugin folder. Insert the line //$this->widgetSchema['zone_id']->setOption( 'with_empty', false );// into the setup() method. Then you don't need to call parent::configure() in the class in which is in the lib/filter/ doctrine/ptEquipmentPlugin On 11 kvě, 14:

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread Pietrino Atzeni
Hi, symfony is asking for a template relative to the create action. Usually, you don't have such template, so you should (optionally): - redirect the user with $this->redirect('new-url'); - change the template after the action is executed with $this->setTemplate('new'); - create the createSucc

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread safa boubekri
thank you i test it and i will reply you -- 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-u

Re: [symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin with sfWidgetFormDoctrineJQueryAutocompleter (sfFormExtraPlugin)

2010-05-12 Thread Luc Didry
Hello Daniel, thanks for your quick answer. Here's the form I want to clone (well, just an excerpt of course) : 1 Personne* jQuery(document).ready(function() { jQuery("#autocomple

Re: [symfony-users] sfFormLanguage displaying languages in their respective language

2010-05-12 Thread Alexandru-Emil Lupu
I don't think that is possible. However, you could create your own widget to do it. All what you have to do is to create your own select box, and play with sfCultureInfo... Alecs sent via htc magic On May 12, 2010 11:39 AM, "HiDDeN" wrote: Is there a way to display languages using sfFormLanguag

Re: [symfony-users] ahDoctrineEasyEmbeddedRelationsPlugin with sfWidgetFormDoctrineJQueryAutocompleter (sfFormExtraPlugin)

2010-05-12 Thread Daniel Lohse
@koto: Would you mind chiming in here? I gather that the jQuery Autocompleter is not initialized after cloning? I don't know how jQuery handles embedded s. ;-) Daniel On 12.05.2010, at 13:34, Luc Didry wrote: > Hello Daniel, thanks for your quick answer. > > Here's the form I want to clone (w

[symfony-users] About embedding FormFilters

2010-05-12 Thread Alessandro Massignan
Hi all, another newbie shot :-): i try to build a FormFilter that embeds many others (not the auto create one from doctrine:generate-admin). Duing the lack of documentation about sfFormFilterDoctrine API i was wondering how could i handle or merge the query of the "master" form with those from the

Re: [symfony-users] Re: sfVideoPlugin

2010-05-12 Thread Eno
On Wed, 12 May 2010, Winnie wrote: > I see on the flowplayer website http://flowplayer.org/documentation/index.html > ( On the bottom ) that any format goes. > So that's why i wonder if it can read other format that flv I believe that's talking about transcoding from other formats to FLV, using

[symfony-users] Problem while loading fixture with the plugin sfDoctrineGuardPlugin

2010-05-12 Thread Etienne
Hey everyone, I've a problem while loading a set of fixture in my project. When I run the command "./symfony doctrine:data-load", it doesn't work and displays the following error: Unknown record property / related component "sfguarduser" on "sfGuardUserGroup" But when I run the command "./symfony

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread abbbassi abidi
hi Safa , perhaps this errors have relation of routing.yml you must be sure that this module exist in routing.yml. good luck 2010/5/12 safa boubekri > thank you i test it and i will reply you > > -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfo

Re: [symfony-users] svn: Can't move '.svn/tmp/entries' to '.svn/entries': File exists

2010-05-12 Thread Eno
On Mon, 10 May 2010, Matt wrote: > I perform the following command on the CLI (CentOS): > > $ svn checkout http://svn.symfony-project.com/branches/1.4/ > > This is in a fresh, brand new, never existed before lib/vendor > directory. Here is what I get: > > svn: Can't move '1.4/.svn/tmp/entries'

Re: [symfony-users] Re: Missing parent::configure() in built form filter

2010-05-12 Thread abbbassi abidi
Hi, i would like to know if you work under plugin or wat, but you can define one classForm in the generator.yml for example you dfine like this form:class: moduleNameForm and in the plugin/yourPlugin/lib/form/ moduleNameForm.class.php make your code 2010/5/12 Tom Ptacnik > If you want to

Re: [symfony-users] sfFormLanguage displaying languages in their respective language

2010-05-12 Thread abbbassi abidi
install this plugin sfFormExtraPlugin willhelp you i think 2010/5/12 Alexandru-Emil Lupu > I don't think that is possible. However, you could create your own widget > to do it. > All what you have to do is to create your own select box, and play with > sfCultureInfo... > Alecs > > sent via htc

[symfony-users] Re: Doctrine won't load 3-level heirarchy as data fixture

2010-05-12 Thread grahamj42
Yes, although it isn't the current version. None of the examples really helped. Although the 'blogpost' example has the same structure, the fact that the 'row keys' and values of 'name' in the 'tags' data are identical conceals which is being referenced. With some more reflection, it's the 'row' t

Re: [symfony-users] Problem while loading fixture with the plugin sfDoctrineGuardPlugin

2010-05-12 Thread Tom Haskins-Vaughan
Try: sfGuardUserGroup: sfGuardUserGroup_admin_admin: User: sfGuardUser_admin Group: sfGuardGroup_admin On Wed, May 12, 2010 at 6:14 AM, Etienne wrote: > Hey everyone, > I've a problem while loading a set of fixture in my project. When I > run the command "./symfony doctrine:data-load", it

Re: [symfony-users] Problem while loading fixture with the plugin sfDoctrineGuardPlugin

2010-05-12 Thread Etienne Michon
It doesn't work neither. I checked in the schema.yml of the plugin and here is the definition of these 3 tables: -- sfGuardGroup: actAs: [Timestampable] columns: id: type: integer(4) primary: true

[symfony-users] Testing credentials

2010-05-12 Thread bedomon
Hi, Some of my actions need special credential, and I want to make test on this feature. I dont's use the sfGuardPlugin in my apps so I don't think i can use it for testing. If someone can explain how I can do this test. (I hope you understand my english) thanks -- If you want to report a vuln

Re: [symfony-users] Problem while loading fixture with the plugin sfDoctrineGuardPlugin

2010-05-12 Thread Pietrino Atzeni
Hi, check in the BasesfGuardUserGroup class which is the name of the relation: it's inside lib/model/doctrine/sfDoctrineGuardPlugin/base... The relation is correct, though, maybe the problem is in some other part of the code: did you enable the plugin? Hope this helps, Pietro It doesn't wor

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread Alexandru-Emil Lupu
Safa, i don't wanna say that i think that i have seen your problem a while ago, and i have suggested you to use the sf mailer / factories.yml however, if you want to do it like that (you're code), i would suggest you to do this: mail($mail, $object, $message, $head); *sfView::NONE;* } Alecs

Re: [symfony-users] Problem while loading fixture with the plugin sfDoctrineGuardPlugin

2010-05-12 Thread Etienne Michon
Hi, Thanks for your help. Unfortunately, I checked and it still doesn't work. The BasesfGuardUserGroup class has two relations sfGuardUser and sfGuardGroup. The plugin work well because my fixture load when I insert them with the command "./symfony doctrine:build --all --and-load --no-confirmation"

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread safa boubekri
thank you all i resolve problem i m gratful for your help -- 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

Re: [symfony-users] urgen_send_mail

2010-05-12 Thread abbbassi abidi
you are welcome :) 2010/5/12 safa boubekri > thank you all i resolve problem > > i m gratful for your help > > -- > 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

[symfony-users] Re: problem with plugin install

2010-05-12 Thread .
I tried it now, but I got the same result. :( Is there a step-by-step guide about how to install plugin for Symfony 1.4.4 ? Thanks! On máj. 11, 18:59, Tom Haskins-Vaughan wrote: > Did you enable them in your ProjectConfiguration class? > > > > On Tue, May 11, 2010 at 10:08 AM, . wrote: > > Hi!

[symfony-users] svn cleanup prob

2010-05-12 Thread yongSymfo
Hi, i have this bug when i try to commit my project work, bugs is "svn: the copy of work ' verrouille", can any one have solution -- 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 subscrib

[symfony-users] Issue with autoloader in cli task.

2010-05-12 Thread Mark Robert Henderson
My understanding is that the autoloader should be activated by default inside of my task, but it's not working for me. I tried doing it manually after finding some google results and here's what I've got so far 1. this is the execute function of my task here:http://pastie.org/ 956232 2. and this i

[symfony-users] "No Models were loaded" in doctrine:data-dump

2010-05-12 Thread Mark Robert Henderson
Hello, I'm trying to run ./symfony doctrine:data-dump from the cli and I just get an error "No models were loaded" I cracked open the php file: http://trac.doctrine-project.org/browser/branches/1.2/lib/Doctrine/Task/DumpData.php?rev=7490 ...and saw that "models_path" is being set. Is there a way

[symfony-users] 1000 Plugins!

2010-05-12 Thread Richtermeister
Yay! Congratulations, symfony! More than once have I heard the phrase "why don't we use Drupal, it's got thousands of plugins", prompting me to bring up the quality vs. quantity argument. But it's good to see we're also strong on quantity. Rock on! Daniel -- If you want to report a vulnerabilit

RE: [symfony-users] Doctrine Migration

2010-05-12 Thread Garry Freemyer
I went to the site to add a comment that this bug has me seriously concerned as I have spent some weeks getting to know Symfony and all that is wasted if this is allowed to continue. It would be a showstopper for me. For a severe bug to be allowed to continue would destroy confidence in the prod

Re: [symfony-users] Doctrine Migration

2010-05-12 Thread Michał Piotrowski
Hi, 2010/5/12 Garry Freemyer : > I went to the site to add a comment that this bug has me seriously concerned > as I have spent some weeks getting to know Symfony and all that is wasted if > this is allowed to continue. It would be a showstopper for me. For a severe > bug to be allowed to conti

[symfony-users] Re: Jobeet tutorial | Day 3 | doctrine:insert-sql

2010-05-12 Thread grahamj42
Kim, >From the MySql command line, I get the same error if I select a non- existent database and then try to create a table. However Symfony stops with a PDO Connection Error quoting MySql error 1049 (unknown database), rather than proceeding to insert the table and giving the error 1046 which you

Re: [symfony-users] problem with plugin install

2010-05-12 Thread Tom Haskins-Vaughan
Did you clear your cache? On 5/12/10, . wrote: > I tried it now, but I got the same result. :( > > Is there a step-by-step guide about how to install plugin for Symfony > 1.4.4 ? > > Thanks! > > On máj. 11, 18:59, Tom Haskins-Vaughan > wrote: >> Did you enable them in your ProjectConfiguration c

[symfony-users] Getting 0 results

2010-05-12 Thread Bill P.
Hello, I have a ProductCategory class with a method: public function getActiveProductsQuery() { $q = Doctrine_Query::create() ->from('Product p, ProductCategory pc, ProductToProductCategory ptc') ->where('pc.slug = ?', $this->getId()) ->andWhere('pc.id = ptc.product_category_id') ->andWhere('p.id

[symfony-users] bug? or i am missing something?

2010-05-12 Thread fRAnKEnSTEin
Hi there, i have a module called "availability" in my backend app, it's "generator.yml" file has: ... list: ... ... sort: [created_at desc] ... Suddenly when i try to enter into the module i get an error: SQLSTATE[42000]: Syntax error or access violation: 1064 You

[symfony-users] bug? or i am missing something?

2010-05-12 Thread fRAnKEnSTEin
Hi there, i have a module called "availability" in my backend app, it's "generator.yml" file has: ... list: ... ... sort: [created_at desc] ... Suddenly when i try to enter into the module i get an error: SQLSTATE[42000]: Syntax error or access violation: 1064 You

[symfony-users] Re: bug? or i am missing something?

2010-05-12 Thread fRAnKEnSTEin
The last post at this URL http://forum.symfony-project.org/index.php/m/91635/ here suggest a solution but it does not worked Any other idea? -- 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

Re: [symfony-users] bug? or i am missing something?

2010-05-12 Thread Gábor Fási
You're missing a comma: `sort: [created_at, desc]` On Thu, May 13, 2010 at 04:00, fRAnKEnSTEin wrote: > Hi there, > > i have a module called "availability" in my backend app, it's > "generator.yml" file has: > > ... > list: >          ... >          ... >          sort: [created_at desc] > ... >