[symfony-users] Re: checkbox_tag - error in docs?

2007-07-26 Thread Eno
On Jul 26, 3:01 pm, weppos <[EMAIL PROTECTED]> wrote: > It works for me (sf 1.0.5). > > Since the helper uses the following statement > > if ($checked) > { > $html_options['checked'] = 'checked'; > } > > both 1 and true should be handled in the same way, 0 and false as > well. Ah, I se

[symfony-users] Re: cannot install plugins

2007-07-26 Thread Luciano A. Andrade
Its odd that you dont get any output from symfony plugin install, you shuld have at least "installing plugin ..." even if the install fails, any way...the plugins shuld be working they just not apear in the plugins list becouse there not listed plugins/.pearrc PD: try to change the report error l

[symfony-users] Re: checkbox_tag - error in docs?

2007-07-26 Thread weppos
It works for me (sf 1.0.5). Since the helper uses the following statement if ($checked) { $html_options['checked'] = 'checked'; } both 1 and true should be handled in the same way, 0 and false as well. -- Simone On Jul 26, 7:38 pm, Eno <[EMAIL PROTECTED]> wrote: > In both the API a

[symfony-users] checkbox_tag - error in docs?

2007-07-26 Thread Eno
In both the API and the Symfony book, I see checkbox_tag examples like this: / Check box => However, using true or false doesn't seem to work for me. Im using the values 1 and 0 instead. I wanted to run this by the list to make sure Im not doing something wrong before opening a ticket

[symfony-users] sfMail

2007-07-26 Thread Haris Zukanović
I have made a simple function "Tell a friend" and the code is following public function executeTell() { $mail = new sfMail(); $mail->addAddress($this->getRequest()->getAttribute('email')); $mail->setFrom(sfConfig::get('sf_password_recovery_mail')); $mail

[symfony-users] Re: Integer defaults to 0 in admin generator - How to change?

2007-07-26 Thread Kiril Angov
So is your problem that the admin generator saves a '0' in the database or because if you leave the field empty the validator YML files you have set does not let you save you form because sfNumberValidator returns '0' as an error input? If it is the first case then you can overwrite the save()

[symfony-users] Re: Integer defaults to 0 in admin generator - How to change?

2007-07-26 Thread Haris Zukanovic'
Is 0 the default value for the field in your database ? Daniel Staver wrote: > When I leave an integer field blank in a form generated by the admin > generator the actual value stored in the database is 0. > > However, this breaks validation with the sfNumberValidator as the > permitted values fo

[symfony-users] Re: Integer defaults to 0 in admin generator - How to change?

2007-07-26 Thread Daniel Staver
No, there is no default value in the database. If I store directly to the database without using the admin generator and without specifying a value for the field I get the correct behaviour, no value is stored. If I save through the admin generator without specifying a value, 0 is stored. On Jul

[symfony-users] Re: How could I propose modifications at plugins

2007-07-26 Thread Marco Catunda
Hi, In our web server the application url path starts with "/parton", If the images in css file begins with "/something" the browser will get "/something" instead of "/parton/something", so I've used relative path in css files. I don't know if it is a particular trouble of our environment or it'

[symfony-users] Integer defaults to 0 in admin generator - How to change?

2007-07-26 Thread Daniel Staver
When I leave an integer field blank in a form generated by the admin generator the actual value stored in the database is 0. However, this breaks validation with the sfNumberValidator as the permitted values for this particular field is a nubmer between 1960-2020 if a number is entered. Is there

[symfony-users] enabling error_404_modules, all other pages start giving 404

2007-07-26 Thread Amit Rana
Hi, I am facing a strange problem which I am unable to debug. If I enable error_404_module and actions for an app I start getting 404 for all the pages. Although website is working as expected but instead of 200 symfony is sending 404 for all pages. Below are symfony logs Any advice? what a