[symfony-users] Re: Re : [symfony-users] Re: upgrading symfony 1.1.1 > 1.1.3 with pear

2008-10-02 Thread James
Yeah live has been a bit busy the last few weeks, and since we're still at 1.0 I haven't really needed to know what version we are at, I just wasn't expecting the jump from 1.1.2 to 1.1.3 so soon, all good though I'll be jumping on the 1.1.3 bandwagon soon enough. ;-) (by then it'll probab

[symfony-users] sfForm and $decoratorFormat

2008-10-02 Thread Thomas Rabaix
Hello, Any one know how to use the decoratorFormat property to render a form ? Or does this value is only used when embeded form must be displayed ? class sfWidgetFormSchemaFormatterTable extends sfWidgetFormSchemaFormatter { protected $rowFormat = "\n %label%\n %error%%field%%help%

[symfony-users] Re: Fatal error: Cannot redeclare BasePage::getText()

2008-10-02 Thread julien
Hi, No the field 'content' is only on the page_i18n table. (I put a selection of my schema.yml) in the first post. What confuses me is that it's working fine for other tables (such as news and news_i18n) which are quite similar ! Julien On Oct 1, 11:28 pm, "Jonathan Busby" <[EMAIL PROTECTED]>

[symfony-users] form framework style

2008-10-02 Thread Jonathan Franks
the form framework book has a nice simple style applied to all the forms it shows. Is the css for this available anywhere?? (the examples are screen shots, so I can't just grab the css) Regards, Jonathan --~--~-~--~~~---~--~~ You received this message because

[symfony-users] propel blob?

2008-10-02 Thread torso
Hi I need help with propel and blob. I am saving excel file to blob column. Saving works but, loading dosen't. If I want to download it from server do I need to use writeFile function to write it to the temp file or is it possible to send it by php object? These things are new to me. Any good tut

[symfony-users] Re: Re : [symfony-users] upgrading symfony 1.1.1 > 1.1.3 with pear

2008-10-02 Thread Krapulator
Try this: pear upgrade -- force symfony/symfony-1.1.3 On Oct 2, 10:29 am, Loïc Vernet <[EMAIL PROTECTED]> wrote: > Same problem here. > > - Message d'origine > De : Tobias Daur <[EMAIL PROTECTED]> > À : symfony-users@googlegroups.com > Envoyé le : Jeudi, 2 Octobre 2008, 1h39mn 35s > Obj

[symfony-users] Re : [symfony-users] upgrading symfony 1.1.1 > 1.1.3 with pear

2008-10-02 Thread Loïc Vernet
Indeed, but before it was ok without specifying the version number, the update was made to the last stable version. - Message d'origine De : Krapulator <[EMAIL PROTECTED]> À : symfony users Envoyé le : Jeudi, 2 Octobre 2008, 11h28mn 42s Objet : [symfony-users] Re: Re : [symfony-users]

[symfony-users] Re: symfony 1.1.3 and doctrine error with symfony doctrine-build-model

2008-10-02 Thread andrea cecchetto
hi gusy i still have the same problem with symfony and doctrine!!! :) 2008/9/30 andrea cecchetto <[EMAIL PROTECTED]> > my schema.yml file is under the this path gallery2/config/doctrine/ > ^symfony > project > > > > 2008/9/30 Jonat

[symfony-users] Create an url ton the symfony project in a task

2008-10-02 Thread [EMAIL PROTECTED]
Hi, I have a task to send email. This email must contain an URL to a module of my symfony project. The genUrl method does not works because I got not host when I run a task. genURl generate : http://./symfony/my-route-to-module/ What did you think ? --~--~-~--~~~---~-

[symfony-users] Re: symfony 1.1.3 and doctrine error with symfony doctrine-build-model

2008-10-02 Thread Jonathan Wage
Can you do a little debugging in sfDoctrineBuildModelTask.class.php and tell me what the value of the models path is? print_r(array($tmpPath, $config['yaml_schema_path'])); - Jon On Thu, Oct 2, 2008 at 10:09 AM, andrea cecchetto < [EMAIL PROTECTED]> wrote: > hi gusy i still have the same proble

[symfony-users] Re: Weird error (or something worong i'm doing)

2008-10-02 Thread Julian Montreal
Self response: Just in case somebody wonders about it, i found that the problem is that the object itself (discussion en my case) has the old id (0) and by performing the save() i'm simply retrieving the id property of the object, not the one from the db. Somehow the object needs to be "updated".

[symfony-users] Re: symfony 1.1.3 and doctrine error with symfony doctrine-build-model

2008-10-02 Thread andrea cecchetto
hi jon, is it right to put in this files -> plugins/sfDoctrinePlugin/lib/task/sfDoctrineBuildModelTask.class.php ? ... and this is the output Array ( [0] => [1] => ) thanks andrea 2008/10/2 Jonathan Wage <[EMAIL PROTECTED]> > Can you do a little debugging in sfDoctrineBuildModelTask.clas

[symfony-users] Re: sfDoctrinePager

2008-10-02 Thread Jonathan Wage
Can you create a ticket and a standalone test showing the problem? http://trac.doctrine-project.org - Jon On Wed, Oct 1, 2008 at 1:04 AM, Bertrand Zuchuat <[EMAIL PROTECTED]>wrote: > > Hi Jon, > > This part isn't good. Look in GROUP BY, g4 isn't exist in FROM (g3). > > I use Doctrine_Pager with

[symfony-users] where is the sfForm book chapter 5 ?

2008-10-02 Thread Olivier Mansour
Hello I come up with a maybe stupid question but, in chapter 3 of the symfony form book there is a remark about a chapter 5 : http://www.symfony-project.org/book/forms/1_2/en/03-Forms-for-web-Designers "By default, symfony uses an HTML array to display a form. This behavior can be changed using

[symfony-users] Re: where is the sfForm book chapter 5 ?

2008-10-02 Thread Fabien Potencier
Not yet written. -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.com | aide-de-camp.org Tél: +33 1 40 99 80 80 Olivier Mansour wrote: > Hello > > I come up with a maybe stupid question but, in chapter 3 of the symfony > form book there is a remark abou

[symfony-users] Re: Create an url ton the symfony project in a task

2008-10-02 Thread Nicolas Perriault
On Thu, Oct 2, 2008 at 5:21 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > What did you think ? Ugly but efficient solution, at the init state of your task: $_SERVER['HTTP_HOST'] = 'toto.com'; // yeah, I know, I know ++ -- Nicolas Perriault http://prendreuncafe.com - http://symfonians.ne

[symfony-users] Re: where is the sfForm book chapter 5 ?

2008-10-02 Thread James
The book for 1.2 is still being worked on, so it probably doesn't exist yet where we can see it. It may not even come into existence now that 1.3 is out. James On Oct 2, 2008, at 12:38 PM, Olivier Mansour wrote: > Hello > > I come up with a maybe stupid question but, in chapter 3 of the

[symfony-users] Re: where is the sfForm book chapter 5 ?

2008-10-02 Thread Nicolas Perriault
On Thu, Oct 2, 2008 at 6:56 PM, Olivier Mansour <[EMAIL PROTECTED]> wrote: > can you give me a hint to begin creating a formater ? For exemple, where in > the sf code the default formater are stored ? I cant find the files. In lib/widget/sfWidgetFormSchemaFormatter*.class.php ++ -- Nicolas Pe

[symfony-users] Re: where is the sfForm book chapter 5 ?

2008-10-02 Thread Olivier Mansour
2008/10/2 Nicolas Perriault <[EMAIL PROTECTED]> > > On Thu, Oct 2, 2008 at 6:56 PM, Olivier Mansour <[EMAIL PROTECTED]> > wrote: > > > can you give me a hint to begin creating a formater ? For exemple, where > in > > the sf code the default formater are stored ? I cant find the files. > > In lib/w

[symfony-users] Re: where is the sfForm book chapter 5 ?

2008-10-02 Thread Olivier Mansour
2008/10/2 Fabien Potencier <[EMAIL PROTECTED]> > > Not yet written. > ok can you give me a hint to begin creating a formater ? For exemple, where in the sf code the default formater are stored ? I cant find the files. thanks Olivier > > -- > Fabien Potencier > Sensio CEO - symfony lead develop

[symfony-users] sfForm and Multiple image upload

2008-10-02 Thread Ant Cunningham
Im hoping some one can point me to some examples or post some code because im not sure how to go about this really... I have a many2many relationship between Person and Asset - really it could be one2many because the assets dont need to be reused for multiple Persons. Anyway, I want to have a sin

[symfony-users] Re: Create an url ton the symfony project in a task

2008-10-02 Thread [EMAIL PROTECTED]
Hi Nicolas, Yes that it , or a parameter in the command or in app.yml . Maybe a solution with apache in command line.. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send

[symfony-users] How to install the Form Framework (plugin?) for symfony 1.0.x

2008-10-02 Thread ssab...@gmail.com
Hi everyone, I read for a few days that hartym developped a backport for symfony 1.0 of the form framework used in symfony 1.1 and 1.2. Unfortunately i can only get more information on symforc.org which is down for a few days now. Therefore i'm asking for information, because i can't find it on th

[symfony-users] Re: Re : [symfony-users] upgrading symfony 1.1.1 > 1.1.3 with pear

2008-10-02 Thread Ant Cunningham
Well last time this happened there was a mistake in the package XML i think. try using the force flag. Loïc Vernet wrote: > Same problem here. > > - Message d'origine > De : Tobias Daur <[EMAIL PROTECTED]> > À : symfony-users@googlegroups.com > Envoyé le : Jeudi, 2 Octobre 2008, 1h39mn

[symfony-users] How to add multiple forms to a page?

2008-10-02 Thread Ardesco
I'm a fairly new symfony user, and I've managed to populate a form with various widgets. However, one question that I've had is how one can add additional forms when needed. For example, I have an input field called "links", which allows the user to add an arbitrary number of links. I know in Dja

[symfony-users] Problem with strange number showing after

2008-10-02 Thread Sid Bachtiar
Hi, I have this weird problem with a symfony website that I developed. It is symfony1.1. What's weird is that this problem only comes from certain networks. When the website is accessed from certain networks, there is weird number added right after tag. E.g.: 3247 Anyone has the same/similar