[symfony-users] sfDoctrinePlugin for symfony1.0 and symfony 1.1

2007-10-18 Thread Jonathan Wage
Greetings, I wanted to inform you all that I have ported the work I have done for sfDoctrinePlugin/trunk which is compatible with symfony 1.1 to sfDoctrinePlugin/branches/1.0 which is compatible with symfony 1.0. All of the same changes I made with the rewrite for 1.1 exist in 1.0. The only diffe

[symfony-users] WATCH THE LATEST WALLPAPERS AND THEMES FOR MOBILES, WINDOWS, LINUX

2007-10-18 Thread sweety
Watch and download the latest wallpapers and themes. Brand New for windows, Funny, love and celeberity wallpapers here just open the site and download your wallpapers. http://free-themes.notlong.com --~--~-~--~~~---~--~~ You received this message because you are s

[symfony-users] Re: MediaLayer or other hosts for symfony

2007-10-18 Thread Ant Cunningham
Ive been using MediaTemple witht he GS plan. Id like to go DV but its not in the budget. Anyhow theyve been decent. Sf runs but there have been some quirks I encounter here and there. Like right now ive got an issue with a redirect from sfGuard - somehow a trailing slash keeps getting appended. I

[symfony-users] MediaLayer or other hosts for symfony

2007-10-18 Thread Dave Dash
Does anybody have experience with medialayer? Or does anybody have recommendations for a good host for symfony apps for smaller (in terms of reach) audiences? The Hosts that support symfony page is a nice list, but it really doesn't give a good idea as to whether they are any good... e.g. Dreamh

[symfony-users] Re: New Symfony Facebook Application

2007-10-18 Thread Dave Dash
Kiril, This is what I noticed too when I saw it. The author had beaten me to the punch for that name, but unfortunately there was not much substance. -d On 10/15/07, Kiril Angov <[EMAIL PROTECTED]> wrote: > > > Yes, will do some time this week and I think it will be good enough as a > first ver

[symfony-users] Re: Can Symfony be configured to serve multiple domains?

2007-10-18 Thread drmikecrowe
LOL -- I just posted this which does exactly what you want: http://trac.symfony-project.com/wiki/HowToDoMultipleSitesWithSingleCore On Oct 18, 11:14 am, "Jon Busby" <[EMAIL PROTECTED]> wrote: > Yep - just up a custom myactions with a preexecute to set the site up as each > domain... > > -Or

[symfony-users] New wiki howto:

2007-10-18 Thread drmikecrowe
Hi folks, I wrote this wiki article about a scenario I have working pretty well. Please review and give me your thoughts. http://trac.symfony-project.com/wiki/HowToDoMultipleSitesWithSingleCore --~--~-~--~~~---~--~~ You received this message because you are subs

[symfony-users] Trimming request parameters

2007-10-18 Thread Tom Haskins-Vaughan
Hi is there a quick way to trim() all/certain request parameters instead of having to manually put trim in my actions? Tom --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this grou

[symfony-users] Re: Problem with sfPokaYoke

2007-10-18 Thread Fabian Lange
Hi, I just rewrote the javascript generation part. It's a bit uglier but works now okay with all nesting combinations I have tested. Are you still in need of it? Ill send it to Alistair once I am done with cleanup (those files somehow suffered from heavy tab/space inconsistencies) .: Fabian

[symfony-users] Re: AJAX vs. login page (symfony bug??)

2007-10-18 Thread Simon Roby
Ack! You got it. The handleErrorLogin() (containing only a return sfView::SUCCESS) was being executed instead of executeLogin(), since the form validation failed due to the AJAX call being a POST method. I had forgotten about that. Many thanks! -- - SR On 10/18/07, Martin Kreidenweis <[EMAIL PRO

[symfony-users] how can i run pake tasks from website??

2007-10-18 Thread [EMAIL PROTECTED]
I found in Documentation/Book that pake task can be run from website according to source below: run('/data/symfony/bin/pakefile.php', 'clear-cache'); } catch (pakeException $e) { print "ERROR: ".$e->getMessage(); } ?> obviously i am getting *Warning*: include_once(/lib/symfony/pake/bin/pake

[symfony-users] Re: AJAX vs. login page (symfony bug??)

2007-10-18 Thread Martin Kreidenweis
Hi, > My first reaction was to add a check with > $this->getRequest()->isXmlHttpRequest() in the login action method to > prevent the login page from being displayed in AJAX calls, but for > some reason it appears that the login action method is completely > ignored whenever it's from an AJAX cal

[symfony-users] Re: AJAX vs. login page (symfony bug??)

2007-10-18 Thread Joby Walker
On 10/18/07, Simon Roby <[EMAIL PROTECTED]> wrote: > > On 10/18/07, Joby Walker <[EMAIL PROTECTED]> wrote: > > 1) Detect that an AJAX request was made that requires a login, and > > save the request parameters for later use. > > 2) catch that a login is required. > > Steps #1 and #2 of your exampl

[symfony-users] Re: Can Symfony be configured to serve multiple domains?

2007-10-18 Thread Jon Busby
Yep - just up a custom myactions with a preexecute to set the site up as each domain... -Original Message- From: Michael Smith <[EMAIL PROTECTED]> Sent: 18 October 2007 15:39 To: symfony users Subject: [symfony-users] Re: Can Symfony be configured to serve multiple domains? They do

[symfony-users] Re: Can Symfony be configured to serve multiple domains?

2007-10-18 Thread Michael Smith
They do something similar in the askeet tutorial http://www.symfony-project.com/askeet/1_0/18 Michael On Oct 18, 7:26 am, "Ian P. Christian" <[EMAIL PROTECTED]> wrote: > Noam wrote: > > Hi, > > > I build small to medium size web sites in PHP/MySQL. Can I configure a > > single Symfony installa

[symfony-users] Re: AJAX vs. login page (symfony bug??)

2007-10-18 Thread Simon Roby
On 10/18/07, Joby Walker <[EMAIL PROTECTED]> wrote: > > This isn't going to be terribly helpful for your users as they try to > execute AJAX actions and nothing happens -- it'll just look like your > application is broken. No, I wasn't planning on having the final app just stop working on my user

[symfony-users] Re: AJAX vs. login page (symfony bug??)

2007-10-18 Thread Joby Walker
This isn't going to be terribly helpful for your users as they try to execute AJAX actions and nothing happens -- it'll just look like your application is broken. What I do is use a Javascript handler to detect that a login was requested so that I can redirect the users browser to the login page

[symfony-users] Re: I can work as a freelancer

2007-10-18 Thread Stefan Koopmanschap
Tolga, Add yourself to the list on this page: http://trac.symfony-project.com/wiki/DevelopersForHire It's always good to have yourself on that list if you're available for hire for symfony work :) Stefan On Oct 18, 10:40 am, tolga <[EMAIL PROTECTED]> wrote: > Hi, > I can work as a freelancer

[symfony-users] Re: Can Symfony be configured to serve multiple domains?

2007-10-18 Thread Ian P. Christian
Noam wrote: > Hi, > > I build small to medium size web sites in PHP/MySQL. Can I configure a > single Symfony installation to work for many different sites/domains > with different databases? > You can use a filter to do this I expect. -- Ian P. Christian ~ pookey.co.uk --~--~-~--~--

[symfony-users] setCulture() must be first ??

2007-10-18 Thread [EMAIL PROTECTED]
I am using symfony 1.0.8 2 tables: lang lang_18n then: $lang = new Lang(); $lang->setCulture('en'); $lang->setName('en'); $lang->save(); works! but: $lang = new Lang(); $lang->setName('en'); $lang->setCulture('en'); $lang->save(); is not working!! $lang->setCulture('en'); is set after $lang

[symfony-users] Can Symfony be configured to serve multiple domains?

2007-10-18 Thread Noam
Hi, I build small to medium size web sites in PHP/MySQL. Can I configure a single Symfony installation to work for many different sites/domains with different databases? For each site by itself any framework will be an overkill, but to manage them all within a single application will be great.

[symfony-users] I can work as a freelancer

2007-10-18 Thread tolga
Hi, I can work as a freelancer in Symfony, find me from [EMAIL PROTECTED] I'm free currently all day. We can work for $20/hour. I live in Istanbul. My english is fluent, I can communicate via Skype. Email for further. Tolga --~--~-~--~~~---~--~~ You received thi

[symfony-users] Re: Howto install symfony1.1

2007-10-18 Thread elbouillon
Ok, thanks for your answers. I'll keep it as it's now. Thank you for this great framework --~--~-~--~~~---~--~~ 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@go