[symfony-users] Re: symfony plugin-install OLD VERSIONS!!

2008-06-10 Thread simo
you download them and install them manually On Jun 11, 2:54 am, xanders <[EMAIL PROTECTED]> wrote: > nobody with the same problem? > > On Jun 4, 3:25 pm, xanders <[EMAIL PROTECTED]> wrote: > > > When using > > symfonyplugin-installhttp://plugins.symfony-project.com/sfReCaptchaPlugin > > i

[symfony-users] Path Issues When Trying to Use Different Versions Concurrently

2008-06-10 Thread Ryan
I have installed symfony 1.1 using PEAR and I've also just downloaded symfony 1.0 and 1.1 using svn into my /home directories. However, when I run symfony it seems to be using the files obtained through PEAR: ---

[symfony-users] Slightly off topic, MLS feeds - was efficient capitalising

2008-06-10 Thread Tom Haskins-Vaughan
Thanks for that Jacob, They'll (Mosso) let me set up a cron job but unfortunately just a PHP script. Now, I maybe able to use exec() to run unzip. Not sure how that will effect memory issues. I don't remember what the type it is, but they write a bunch of files to our ftp account that we ca

[symfony-users] Re: symfony plugin-install OLD VERSIONS!!

2008-06-10 Thread xanders
nobody with the same problem? On Jun 4, 3:25 pm, xanders <[EMAIL PROTECTED]> wrote: > When using > symfonyplugin-installhttp://plugins.symfony-project.com/sfReCaptchaPlugin > i only get version 1.0.1 when on the wiki > pagehttp://trac.symfony-project.com/wiki/sfReCaptchaPluginit is shown as > t

[symfony-users] Re: Efficient capitalizing of uppercase source words

2008-06-10 Thread Jacob Coby
I've worked with data from MLSs in NC, MI, FL, CA, NY. Never CT. I assume you're doing an IDX project? I don't have much experience with IDX (I mostly used RETS pulls and threewide FTP pushes). As for importing the data using PHP, PHP's support for zip files is annoying. Maybe there is so

[symfony-users] Re: please help me

2008-06-10 Thread Rick M
Another option is to create a Filter that resets your attributes when the user is no longer authenticated (and/or do any redirection or forwarding that you want). Something like: getContext()->getUser(); if (!$user->isAuthenticated()) { $user->setAttribute('user_id', ''); }

[symfony-users] Re: please help me

2008-06-10 Thread James
This is my big pet peeve with SF 1.0 security. Assuming that the programmer wants the session to time out before the browser window closes. I personally don't feel the need for the time out in most of my applications. I hear that sf 1.1 is fixing that. It's too bad that we won't be upg

[symfony-users] Re: Efficient capitalizing of uppercase source words

2008-06-10 Thread Tom Haskins-Vaughan
Hi Jacoby, Did you work on the CT MLS? My client's web host won't let me use a shell script. Do you think it's possible to import the data using PHP? I'll have access to a few commands through exec(). Tom Jacob Coby wrote: > Well, you got some of the cases handled. It doesn't handle the Mac

[symfony-users] Re: functional tests outputting to prompt

2008-06-10 Thread hutchic
Figured it out there was a exception in the code. On Jun 10, 11:22 am, hutchic <[EMAIL PROTECTED]> wrote: > Starting just this morning whenever I run a symfony functional test it > outputs the content of the page to the command prompt. > > Even using the default functional tests. I suspect a plu

[symfony-users] Re: Efficient capitalizing of uppercase source words

2008-06-10 Thread Jacob Coby
Well, you got some of the cases handled. It doesn't handle the Mac or Mc prefix. It also won't work for any address that has abbreviations (NC Hwy 12). I worked with MLS data sets for 8 years. There is no easy solution for capitalization. There are always edge cases, exceptions, and jus

[symfony-users] Re: Efficient capitalizing of uppercase source words

2008-06-10 Thread Tom Haskins-Vaughan
Excellent! Looks good. Thanks. Have you or has anyone else come across any shortcomings in this function? Guillermo Rauch wrote: > Look at this: > http://php.net/manual/en/function.ucfirst.php#81258 > > On Jun 10, 2008, at 2:08 PM, Tom Haskins-Vaughan wrote: > >> Hi, >> >> I have a data source

[symfony-users] Re: Efficient capitalizing of uppercase source words

2008-06-10 Thread Guillermo Rauch
Look at this: http://php.net/manual/en/function.ucfirst.php#81258 On Jun 10, 2008, at 2:08 PM, Tom Haskins-Vaughan wrote: > > Hi, > > I have a data source (CT MLS property database) and the addresses are > all give in uppercase letters: > > 23 WATER STREET > > I'd like it to appear 23 Water Stre

[symfony-users] Efficient capitalizing of uppercase source words

2008-06-10 Thread Tom Haskins-Vaughan
Hi, I have a data source (CT MLS property database) and the addresses are all give in uppercase letters: 23 WATER STREET I'd like it to appear 23 Water Street. I could use ucfirst(), which is fine, but I was wondering if there was any existing work on how to get around things like 49 O'Brie

[symfony-users] Re: please help me

2008-06-10 Thread Richtermeister
When the session is expired, the user should not be able to access areas where he / she could do any damange with the remaining session data. You can enforce that by sending them back to a login screen and in that action removing the stale data.. Hope this helps, Daniel On Jun 10, 1:48 am, Caffe

[symfony-users] functional tests outputting to prompt

2008-06-10 Thread hutchic
Starting just this morning whenever I run a symfony functional test it outputs the content of the page to the command prompt. Even using the default functional tests. I suspect a plugin, filter or yml file is causing this any help would be greatly appreciated. Thanks, Colin --~--~-~--

[symfony-users] sf1.1: how to prevent CLI logging to stdout?

2008-06-10 Thread Andreas Ferber
Hi, is there any way that you can change the logging setup for a commandline task, without resorting to changing the symfony code itself? AFAICT, logging in CLI tasks always goes to STDOUT (even if you create and register some other logger). However, I need to write a CLI task that outputs some

[symfony-users] Re: How to write a Sitemap.xml ?

2008-06-10 Thread Olivier LOYNET
Hi, BTW : When you generate a sitemap, don't name it sitemap.xml but your-site-sitemap.xml or something like this. The avantage to use a app like gsitecrawler, you can see all your urls, with the title, the description content, and see if you have any 404 error or else. Also you can use sf plug

[symfony-users] Re: sfI18nExtract plugin for sf 1.0 - no generation of the xml file

2008-06-10 Thread simo
Thanks nautile, it works. (It should be added on the plugin page, I think) On Jun 10, 2:56 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > You have to create the message.en.xml yourself, with the xml > declaration in it. > > Nautile > > On 10 juin, 11:43, simo <[EMAIL PROTECTED]> wrote: >

[symfony-users] Re: sfI18nExtract plugin for sf 1.0 - no generation of the xml file

2008-06-10 Thread [EMAIL PROTECTED]
You have to create the message.en.xml yourself, with the xml declaration in it. Nautile On 10 juin, 11:43, simo <[EMAIL PROTECTED]> wrote: > Hi list, > > I have installed sfI18nExtract plugin and set my configuration file : > > -- in apps/my_app/config/app.yml > > all: >   cultures: [fr, en] > >

[symfony-users] sfI18nExtract plugin for sf 1.0 - no generation of the xml file

2008-06-10 Thread simo
Hi list, I have installed sfI18nExtract plugin and set my configuration file : -- in apps/my_app/config/app.yml all: cultures: [fr, en] -- in apps/my_app/config/settings.yml all: i18n: on standard_helpers: [Partial, Cache, Form, I18n] -- in apps/my_app/config/i1

[symfony-users] Routing.yml

2008-06-10 Thread Matthieu Brau
Hello I want to make a dynamic redirection. In fact I want to change the culture and stay in the same module. So I post the moduleName parameter to the routing.yml, but il does'nt work This is the code of my rule : change_culture: url:/change_culture/:culture/:modulecourant param: { mod

[symfony-users] Image rendering problem

2008-06-10 Thread Sumedh
Hi friends, I am facing a strange problem... Our home page (zamanzar dot com) has 4 big images (Zamanzar Process)... They get rendered correctly on IE...but on FF, I see only couple of them loaded sometimes...When I see Firebug, I see them downloaded correctly...but FF doesn't render them... A

[symfony-users] Re: please help me

2008-06-10 Thread CaffeineInc
try to include a descriptive subject too. On Jun 10, 7:49 am, "Birchandra Sanasam" <[EMAIL PROTECTED]> wrote: > Dear All, > > I have a problem that is when the session expired (meaning no logout action > was triggered) > the user is no longer authenticated but the attributes are still available.

[symfony-users] Re: How to write a Sitemap.xml ?

2008-06-10 Thread Sylver
I use Gsitecrowler and it works well. But, which is the easy way to access the Sitemap.xml ? To put it in /web and access to it ? I know i have to do smthing with the routing system but i don't know why... Thanks :) --~--~-~--~~~---~--~~ You received this message b