[symfony-users] Re: New Symfony Open Source Application .. in few weeks.

2008-06-03 Thread Mohammad Asif Ali
Eno Thanks for your feedback. Actually i have not completly deployed the application Still workigng on it. will do that once it is completely live. Thanks again :) Asif On Jun 2, 7:43 pm, Eno [EMAIL PROTECTED] wrote: On May 31, 8:50 am, Mohammad Asif Ali [EMAIL PROTECTED] wrote: Please

[symfony-users] Re: Form validation as array

2008-06-03 Thread Mauro Casula
Hi, You have to create an edit.yml ( edit is your form submit action ) like this: methods: post: - feedback{name} - feedback{email} - feedback{message} names: feedback{name}: required: yes required_msg: Insert a title. . Try this.. ;) Regards. Mauro Casula

[symfony-users] Re: File Size validation not working...

2008-06-03 Thread Sumedh
Thanks Jill...That was a good resource on the topic... Thanks Thomas... But I am not getting getFileSize() even for smaller sized files...the file gets uploaded correctly...but this value doesn't get anything... This is how I am doing it - ('file' is the field of the form) $fileName =

[symfony-users] Migration guide for 1.1

2008-06-03 Thread Sumedh
May be I am asking a dumb question, but where can I find a migration guide to Symfony 1.1? --~--~-~--~~~---~--~~ 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] How to send an UTF-8 mail ?

2008-06-03 Thread Sylver
Hey guys ! I use this example to send an email : http://www.symfony-project.org/askeet/1_0/en/12 and it works. But, some letters don't work like é, è, à... Can send an email in UTF-8 ? Thanks. --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] Re: How to send an UTF-8 mail ?

2008-06-03 Thread Mauro Casula
;) You are welcome, man. Mauro Casula *symfony-framework.com* On Tue, Jun 3, 2008 at 9:38 AM, Sylver [EMAIL PROTECTED] wrote: Thanks, it works :) On 3 juin, 09:35, Mauro Casula [EMAIL PROTECTED] wrote: Hi, it's very simple... Watch this: public function

[symfony-users] SfDoctrineplugin problems

2008-06-03 Thread Johannes Frandsen
Hey I have tried following the guide here: http://trac.symfony-project.com/wiki/sfDoctrinePlugin but although I don't get any errors no model is created, except for the sfGuardDoctrinePlugin model which works fine. Is this guide outdated or? I'm running symfony version 1.1.0-rc1 and latest

[symfony-users] Re: Problem with a validator !

2008-06-03 Thread Sylver
Always a problem... So : my actions.class.php : public function handleErrorSend() { return sfView::SUCCESS; } public function executeSend() { if ($this-getRequest()-getMethod() != sfRequest::POST) {

[symfony-users] Re: How to send an UTF-8 mail ?

2008-06-03 Thread Sylver
Thanks, it works :) On 3 juin, 09:35, Mauro Casula [EMAIL PROTECTED] wrote: Hi, it's very simple... Watch this: public function executeEnviarCorreoContacto() { // If validation is ok... $this-nombre = $this-getRequestParameter('nombre'); $this-apellido =

[symfony-users] Reverting Back to a Previous Version of Symfony

2008-06-03 Thread Ryan
How can I revert back to Symfony 1.0.x from 1.1 after I've upgraded using PEAR? Is it better just to use SVN for everything and not bother with PEAR? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users

[symfony-users] Form validation as array

2008-06-03 Thread hudson
Hello! I hawe a form: [CODE] form method=POST input type=text name=feedback[name] value=1 input type=text name=feedback[email] value=2 input type=text name=feedback[message] value=3 /form [/CODE] When I submit this form - I'll get on the server-side an array: [CODE] $feedback = array ( name

[symfony-users] Re: How to send an UTF-8 mail ?

2008-06-03 Thread Mauro Casula
Hi, it's very simple... Watch this: public function executeEnviarCorreoContacto() { // If validation is ok... $this-nombre = $this-getRequestParameter('nombre'); $this-apellido = $this-getRequestParameter('apellido'); $this-email =

[symfony-users] propel:generate-crud Symfony 1.1 Problems

2008-06-03 Thread Ryan
I am trying to generate the crud interfaces for symfony 1.1, which I just upgraded to using PEAR. I also had problems in 1.0. Basically I'm getting this error: --- [EMAIL PROTECTED]:/var/www/askeet$ symfony propel:generate-crud frontend user User Unable to scaffold nonexistent model User.

[symfony-users] Re: Website uptime

2008-06-03 Thread danielwinter
mon.itor.us and http://www.montastic.com combined :) On Jun 3, 4:59 am, Daevid Vincent [EMAIL PROTECTED] wrote: http://mon.itor.us@ 11:57AM PST The irony. Mon. itor. us Error Internal server error. Please, try later. BAH BAHHAHA HAHAHAHHAHAHA Seriously, just install

[symfony-users] Session Even Listener for 1.0

2008-06-03 Thread Sumedh
I need to save some session data on closure of session... I saw that something like a session listener is available in 1.1... http://www.symforc.com/post/2008/04/30/Overview-of-symfony-11-event-dispatcher So, is there something I can do in 1.0?

[symfony-users] Re: Migration guide for 1.1

2008-06-03 Thread Nicolas Perriault
2008/6/3 Sumedh [EMAIL PROTECTED]: May be I am asking a dumb question, but where can I find a migration guide to Symfony 1.1? Here at this moment: http://trac.symfony-project.com/browser/branches/1.1/UPGRADE ++ -- Nicolas Perriault http://prendreuncafe.com - http://symfonians.net -

[symfony-users] Mails with symfony 1.1

2008-06-03 Thread Yohan GIARELLI
Hello ! I don't find how to send a mail with sf 1.1... How can i send mail in 1.1 without the sf1.0 compat plugin ? Thanks in advance, Yohan. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group.

[symfony-users] Re: Mails with symfony 1.1

2008-06-03 Thread Yohan 'rouKs' G.
Thanks for your answer. I'm disapointed that there's no symfony way to send mails in 1.1... Thomas Rabaix wrote: This point has been discussed different times now in the dev mailing list. And the conclusion of the core team : - no more sendMail function in a controller - no more mail

[symfony-users] Re: Mails with symfony 1.1

2008-06-03 Thread Thomas Rabaix
This point has been discussed different times now in the dev mailing list. And the conclusion of the core team : - no more sendMail function in a controller - no more mail feature built in - send your mail with your own solution, ex : swift mailer see :

[symfony-users] Re: File Size validation not working...

2008-06-03 Thread Thomas Rabaix
$this-getRequest()-getFileSize(INPUT_NAME); Thomas On Tue, Jun 3, 2008 at 10:29 AM, Sumedh [EMAIL PROTECTED] wrote: Thanks Jill...That was a good resource on the topic... Thanks Thomas... But I am not getting getFileSize() even for smaller sized files...the file gets uploaded

[symfony-users] Re: Reverting Back to a Previous Version of Symfony

2008-06-03 Thread Jacob Coby
On Jun 3, 2008, at 4:35 AM, Ryan wrote: How can I revert back to Symfony 1.0.x from 1.1 after I've upgraded using PEAR? Is it better just to use SVN for everything and not bother with PEAR? Yes. It gives you quite a bit more flexibility and lets you upgrade and test one project at a

[symfony-users] Re: File Size validation not working...

2008-06-03 Thread Jill Elaine
Ya, as Thomas says. You do not want to get the file size of fileName. FileName is a string and doesn't have a file size. Use: $fileSize = $this-getRequest()-getFileSize('file'); Good luck! Jill On Jun 3, 4:34 am, Thomas Rabaix [EMAIL PROTECTED] wrote:

[symfony-users] Re: How do I access a validate .yml setting in my template?

2008-06-03 Thread Daevid Vincent
You misunderstand. We're using that already. But it's assinine to bog down the server just to find out that the person didn't supply a form element properly. That's why God invented Javascript and form validation. The server side validation should be used as a last resort for those unfortunate

[symfony-users] Re: blog and or email platform needed to incorporate into our social site

2008-06-03 Thread Daevid Vincent
Actually Eno, as Halfer pointed out, there is a Blog plugin for symfony: http://trac.symfony-project.com/wiki/sfSimpleBlogPlugin This is exactly the kind of answer/thing I am looking for. Now does anyone know of an email plugin (symfony or otherwise). The squirrelmail and roundcube projects are

[symfony-users] Re: Reverting Back to a Previous Version of Symfony

2008-06-03 Thread Ryan
So which setting do I use to tell symfony which version to use? I'll check out 1.0 and 1.1. On Jun 3, 5:25 am, Jacob Coby [EMAIL PROTECTED] wrote: On Jun 3, 2008, at 4:35 AM, Ryan wrote: How can I revert back to Symfony 1.0.x from 1.1 after I've upgraded using PEAR? Is it better just

[symfony-users] Re: Reverting Back to a Previous Version of Symfony

2008-06-03 Thread Jacob Coby
The config/config.php controls which sf is loaded. I believe that applies to both 1.0 and 1.1. It should be automatically setup for you by init-project. On Jun 3, 2008, at 7:32 PM, Ryan wrote: So which setting do I use to tell symfony which version to use? I'll check out 1.0 and 1.1.

[symfony-users] indexing sfSimpleForum by sfLucene plugin

2008-06-03 Thread Mohammad Ali Safari
Hi I was wondering if anybody has experiences with using sfLuceneplugin for searching on forums built by sfSimpleForumPlugin. I have installed them both and can search properly. The problem is it does not automatically index new messages. I have added this line:

[symfony-users] Re: File Size validation not working...

2008-06-03 Thread Jill Elaine
A bit more information on the upload 'silently fails' if filesize exceeds PHP max size: http://www.symfony-project.org/forum/index.php/t/13325/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To

[symfony-users] Re: Paid Symfony App Gig

2008-06-03 Thread Allan Andal
Hi Jonathan, Contact me, im interested. Mail: [EMAIL PROTECTED] YM: [EMAIL PROTECTED] Thanks, On 6/4/08, Hawkmoon [EMAIL PROTECTED] wrote: Hey Gang, I'm looking for a symfony developer with good design skills for a 2-3 week calendar based web application project. Will pay well for the

[symfony-users] Re: Reverting Back to a Previous Version of Symfony

2008-06-03 Thread Ryan
What about the /usr/bin/symfony script and initializing projects. How does it know which you want to use. I always run 'symfony init-project ' inside a new empty directory. On Jun 3, 6:20 pm, Jacob Coby [EMAIL PROTECTED] wrote: The config/config.php controls which sf is loaded. I believe