[symfony-users] Re: Fillin FCKEditor

2007-06-24 Thread Greg Freeman
By the way I know it's a problem with FCK Editor because if I remove the rich=fck from the textarea tag helper, fillin works. It only does not work on fckeditor enhanced text area tags. --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[symfony-users] Fillin FCKEditor

2007-06-24 Thread Greg Freeman
fillin: enabled: true param: check_types: [text] Should the text type cover the textarea tag? (FCK rich text editor) because I can't get it to work. Is there another type for this? FIllin works just fine with simple text inputs etc. Any help appreciated thanks --~--~-~--~

[symfony-users] Re: getNbResults() error

2007-06-24 Thread Birchandra Singh
Hi Marco, Do you use as following: $c = new Criteria(); $c->add(NewscatPeer::NAME, $name, Criteria::EQUAL); $pager = new sfPropelPager('News', 15); $pager->setCriteria($c); $pager->setPage($this->getRequestParameter('page', 1)); $pager->setPeerMethod('doSelectJoinNewscatPeer'); $pager->setPeerC

[symfony-users] Issues with Create/Edit/Save actions

2007-06-24 Thread Greg Freeman
When you use the propel admin generator, it creates these three actions create, save and edit. Create and save forward to edit. This all works fine but my question is If I want to set some action specific variables how do I do this? since after forwarding they are lost. For example if I want to s

[symfony-users] Re: Install problem

2007-06-24 Thread Kiril Angov
Just wondering if you did "pear upgrade-all" before trying to install symfony? Kupo Eno wrote: > On Jun 19, 4:38 am, gestadieu <[EMAIL PROTECTED]> wrote: > > >> It actually happens many times. I would not say it is normal, but I >> can confirm you that you did not do anything wrong. >> Somet

[symfony-users] Re: Install problem

2007-06-24 Thread Eno
On Jun 19, 4:38 am, gestadieu <[EMAIL PROTECTED]> wrote: > It actually happens many times. I would not say it is normal, but I > can confirm you that you did not do anything wrong. > Sometimes I have to do it 10 times before getting it properly. That's > why they mention other mean toinstallsymfo

[symfony-users] Re: Determining GMT offset of a timezone

2007-06-24 Thread Kiril Angov
Not changing the time zone maybe best but the only way as it seems is the following: function getNonDstOffset($timeZone, $dateTime) { $env_tz = date_default_timezone_get(); date_default_timezone_set($timeZone->getName()); $localtime = localtime(time(), true); date_default_timezone_set($e

[symfony-users] Determining GMT offset of a timezone

2007-06-24 Thread Dan Grossman
This isn't Symfony specific, but thought one of ya PHP gurus might be able to help. I have some time zone strings (ex: "America/New_York" or "Europe/London"), and want to find the GMT offset of that timezone, *without DST adjustments*. In other words, the offset (like GMT -5) that I print sho

[symfony-users] Re : [symfony-users] Re: Re : [symfony-users] Re: config cross app

2007-06-24 Thread Loïc Vernet
i mean the config directory of the project and not the config directory of the applications, may be this file should have been called project.yml and not app.yml witch is quiet confusing - Message d'origine De : Nicolas CHARLOT <[EMAIL PROTECTED]> À : symfony-users@googlegroups.com Envoy

[symfony-users] Re: config cross app

2007-06-24 Thread Nicolas Perriault
Nicolas CHARLOT a écrit : > For an I18n project, I would define a param "languages_available". This param > impact on Front and Back app and I wouldn't have to write 2 identical config > file. Is there a way to do that easily or do U advise to use a table for this > purpose ? What about makin

[symfony-users] Re: Re : [symfony-users] Re: config cross app

2007-06-24 Thread Nicolas CHARLOT
Loïc Vernet a écrit : simply use app.yml in /config I repeat I've to access params in many apps. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send

[symfony-users] Re : [symfony-users] Re: config cross app

2007-06-24 Thread Loïc Vernet
simply use app.yml in /config - Message d'origine De : Nicolas CHARLOT <[EMAIL PROTECTED]> À : symfony-users@googlegroups.com Envoyé le : Dimanche, 24 Juin 2007, 11h23mn 09s Objet : [symfony-users] Re: config cross app Adriaan van N. a écrit : > You may create a link between the files:

[symfony-users] Re: config cross app

2007-06-24 Thread Nicolas CHARLOT
Adriaan van N. a écrit : > You may create a link between the files: > $ cd symfony_base/apps/new_app > $ ln ../../original_app/config_file.yml config_file.yml > OK, but I'm still using Windows... --~--~-~--~~~---~--~~ You received this message because you are su