[symfony-users] Re: Webflows in symfony???

2008-05-29 Thread Richtermeister
I haven't worked with it myself, but it seems you might want to look at the pageflow plugin http://trac.symfony-project.com/wiki/sfPageFlowPlugin Let us know how it goes. :) Have a great night, Daniel On May 28, 8:26 pm, allan [EMAIL PROTECTED] wrote: Hello I’m making a project in which I

[symfony-users] Re: OS X web server setup methodology??

2008-05-29 Thread CaffeineInc
I use the following on OSX 10.5.. Allows PDO mysql which is way faster, and supports doctrine. If your using OSX as a dedicated webserver MAMP just doesn't cut it... You'll need to install ports (like apt-get) to get some of the GD libraries and perhaps a c compiler, (gcc) if you haven't

[symfony-users] Problem with a validator !

2008-05-29 Thread Sylver
Hello, i have a form to send an e-mail. The function validateSend() : public function validateSend() { if ($this-getRequest()-getMethod() != sfRequest::POST) { $this-setTemplate('send'); }else

[symfony-users] Re: Webflows in symfony???

2008-05-29 Thread Lee Bolding
LMAO, I was just about to post about sfWorkFlowPlugin! I've been messing around with it for about a week, and I can't make the example work. Anybody had any success? I can get the first page working, the ticket is generated etc - but once I try to submit the form it does nothing :-/ On

[symfony-users] Rich date field is diabled when using AJAX

2008-05-29 Thread Grégoire
Hi, I want my users to be able to set and modify their date of birth. So I use this function: echo object_input_date_tag ($user, 'getDob', 'rich=true'); I want the form to be displayed in a DIV, loaded with AJAX. But when I do that, the button next to the field, which is supposed to display

[symfony-users] Re: Rich date field is diabled when using AJAX

2008-05-29 Thread Alexander Deruwe
On 29 May 2008, at 14:12, Grégoire wrote: echo object_input_date_tag ($user, 'getDob', 'rich=true'); I want the form to be displayed in a DIV, loaded with AJAX. But when I do that, the button next to the field, which is supposed to display the calendar, is always disabled, with the disabled

[symfony-users] Re: Rich date field is diabled when using AJAX

2008-05-29 Thread Grégoire Marchal
Excellent! It works! I've added 'script' = true in the options of the function link_to_remote() But ! I have a javascript error now... Calendar is not defined () : prototype.js (line 214) ... whereas all the .js files are included... :/ On 29 mai, 14:25, Alexander Deruwe [EMAIL PROTECTED]

[symfony-users] Re: Rich date field is diabled when using AJAX

2008-05-29 Thread Fabian Lange
That is because you are using a helper, that as side effect would make javascript and css available to the browser. but as you are returning ajax stuff only this isnt added to the response that has been already rendered in the browser. in short: on every page that uses ajax that could return some

[symfony-users] Problem in mail send

2008-05-29 Thread Bala
Hi All, I have the problem to send a mail in symfony by using the both the methods the sfMail class and also another method. I did not get any error while sending the mails but mail does not go to the mail id which i used in the programs . Could you Please any one solve this issue.

[symfony-users] Problem to pass the parameter value in the link_to_remote

2008-05-29 Thread Bala
Hi all, I don't know how to pass the parameter value in the link_to_remote() method. Now i will explain the issue. I am having the Signup form. In this form i had given the username text field and the Check availability link. At first if the user enter the username in the text

[symfony-users] Re: Rich date field is diabled when using AJAX

2008-05-29 Thread Grégoire Marchal
ok, it's a strange behavior, but it works! thanks a lot :) --~--~-~--~~~---~--~~ 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@googlegroups.com To unsubscribe from

[symfony-users] How to change the default upload directory ?

2008-05-29 Thread Sylver
Hello, i have installed my symfony project on OVH (french host) and my web- directory is /www instead of /web. When i try to upload a file, it try upload it on /web/uploads wich doesn't exist. How can i change that ? echo sfConfig::get('sf_upload_dir'); - /home/sylver/workspace/sta/web/ uploads

[symfony-users] separate validator for edit/create

2008-05-29 Thread Razvan Popa
Hello. What would be a good practice in separating the validating procedure for the action update depending on who's invoking it ... create or edit? Basically I have this situation. I'm trying to ensure that a username is unique. I only allow the user to enter a username from the create

[symfony-users] Re: Does sfDoctrine support multiple databases opened simultaneously?

2008-05-29 Thread Wildleaf
I have two databases in my databases.yml - one MySQL and one MSSQL - No matter what I define in my schema.yml for connection, it will always use the second connection definition (and therefore fail) // inside databases.yml all: it_requests: class: sfDoctrineDatabase param:

[symfony-users] forwardUnless(1,a message)

2008-05-29 Thread russell
From within error404Success.php template, how can I access the message passed by forwardUnless(1, this is the message I want to display)? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post

[symfony-users] Re: separate validator for edit/create

2008-05-29 Thread forkmantis
Razvan, What I've done for cases like this is use this snippet, which allows you to use conditional logic to load validation yaml: http://www.symfony-project.org/snippets/snippet/232 So I make a standard validation file for the common validation that needs to happen for both edits and creates,

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

2008-05-29 Thread Daevid Vincent
Wondering if anyone knows of, or can recommend (or avoid for that matter), any kind of web logging (blogging as the kids call it) and / or email system. By email system, I refer to the kind like you'd find on MySpace - compose, inbox, sent, folders for things like friend requests, comments, etc)

[symfony-users] hi

2008-05-29 Thread a7lahm
للحصول على وزن مثالي في يوم واحد ادخل هنا http://www.antya7la.com/vb/t26066.html خبر مؤسف ومؤلم اتمنى الدخووول http://www.antya7la.com/vb/t26168.html اختاري لون الصبغ اللي اناسبح ( السايت عجيب) للنساء فقط http://www.antya7la.com/vb/t26211.html السلسلة الوثائقية الشيقة Walking with Dinosaurs

[symfony-users] Re: How to change the default upload directory ?

2008-05-29 Thread Dmitry Nesteruk
Try to set upload directory in the config/config.php Example: sfConfig::set('sf_upload_dir', '/home/sylver/workspace/sta/www/uploads'); You should create this directory before you will try to upload some file. 2008/5/29 Sylver [EMAIL PROTECTED]: Hello, i have installed my symfony project on