[symfony-users] Mime type for zip file in Google Chrome

2010-11-26 Thread eliana m.
when I upload a zip file in my Symfony app with IE, the mime type of that zip file is application/x-zip-compressed. When I upload a zip file in Firefox, the mime type of that zip file is application/octet- stream and the mime type for zip file in chrome is application/zip. The mime type for zip fi

[symfony-users] problem with sfWidgetFormChoice

2010-11-11 Thread eliana m.
I am making a form in the backend and it allows multiple extensions. I'm using sfWidgetFormChoice to allow the user to select multiple options, but I have to concatenate each selection. 1-form: $this->widgetSchema['extension'] = new sfWidgetFormChoice(array( 'choices' => Doctrine_Co

[symfony-users] Question with form

2010-10-19 Thread eliana m.
hello. I have a question. I can build a form with a field that does not exist in the model? Thank you for your help. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Gr

[symfony-users] Application Configuration

2010-10-14 Thread eliana m.
hello I need to install different plugins for each application. The following is the code for the appconfiguration: enablePlugins(array('sfCmsPlugin',)); } } and I get the following error Fatal error: Class 'sfDoctrineDatabase' not found in C:\wamp\www\cms- utp\data\bin\UTP\cach

[symfony-users] Question on Forms

2010-10-01 Thread eliana m.
Hi, I'm using symfony 1.4.3 Let me know if there is a chance to do the following: I have two modules called documents and photos. I need create a form that it serves both the documents and to the photos. Is it possible with symfony? -- If you want to report a vulnerability issue on symfony, p

[symfony-users] Re: problem with sfWidgetFormChoice

2010-09-23 Thread eliana m.
hello again Gustavo implement the function that sent me the following manner: public function doUpdateObject( $values = null ) { if ( isset( $values[ 'extension' ] ) ) { $objeto = parent::doUpdateObject(); if(is_array( $values[ 'extension' ] ) &&

[symfony-users] Re: problem with sfWidgetFormChoice

2010-09-23 Thread eliana m.
hi Gustavo ... thank you very much for your response. I'm using symfony 1.4. I need to save the choices the user selects in the field called extension of the database. The schema is: IngeindArchivospermitidos: #connection: doctrine columns: tipo_archivo: { type: string(20), fixed: fals

[symfony-users] Re: different css for layouts

2010-09-23 Thread eliana m.
hello how do you want to change the Javascript and CSS files ...? I did a CMS and the user select a template that he wants, and they change. but I Do not know if it help you Tell us more about how you want to change the Javascript and CSS files. -- If you want to report a vulnerability iss

[symfony-users] problem with sfWidgetFormChoice

2010-09-22 Thread eliana m.
hello! I am making a form in the backend. The form must have select a field that allows multiple extensions. The code is: 1. FORM: abstract class PluginIngeindArchivospermitidosForm extends BaseIngeindArchivospermitidosForm { public function configure() { $this->wid