[symfony-users] ckWebServicePlugin et $_SERVER[’S SL_CLIENT_CERT’]

2010-10-27 Thread Belgacem TLILI
hi for all Sf developers, we have some probleme , may be it's a configuration probléme , really i dont know this is the our condition: we are with Symfony 1.4 doctrine ORM we use ckWebServicePlugin for our WebService and we use an authentification with certeficat, i would like get the value of

[symfony-users] Re: ckWebServicePlugin et $_SERVER[ ’SSL_CLIENT_CERT’]

2010-10-27 Thread Belgacem TLILI
Does any developper has an idea for that ?? On 27 oct, 09:05, Belgacem TLILI belgacem0...@gmail.com wrote: hi for all Sf developers, we have some probleme , may be it's a configuration probléme , really i dont know this is the our condition: we are with Symfony 1.4 doctrine ORM we use

[symfony-users] sfCKEditorPlugin

2010-10-21 Thread Belgacem TLILI
please i have an urgent project, i want to use this plugins sfCKEditorPlugin i have do all configuration in the read-me page of the plugins but i have all time CKEditor class not found any help plz -- If you want to report a vulnerability issue on symfony, please send it to security at

[symfony-users] order of embed fields in admin generated module

2010-08-10 Thread Belgacem TLILI
hi for all Sf developers i have a backend module containing a form with an embeded form i would like to change the order of the fields in my form (also the fields of the embed form) i have used the generator.yml file but i can't find a way to organise the fields of the embed form please help

[symfony-users] Re: order of embed fields in admin generated module

2010-08-10 Thread Belgacem TLILI
, abbbassi abidi abbbassi.recrutemen...@gmail.com wrote: just owverride the _form_field.php or change itin the generator.yml  :) 2010/8/10 Belgacem TLILI belgacem0...@gmail.com hi for all Sf developers i have a backend module containing a form with an embeded form i would like to change

[symfony-users] delete a field in the bind methode

2010-04-28 Thread Belgacem TLILI
hello for all Sf Developpers i have add a field in my form , i use it to get an ajax list in a secondfield when saving the form i must delete the first object because it does not an element of my object form so i get all time : Unexpected extra form field named firstfield i'n thinking to

[symfony-users] Fatal error: Class 'sfWidgetFormReCaptcha' not found

2010-04-13 Thread Belgacem TLILI
i'm using Sf1.4 i have a form that contain a captcha fiels in my computer all things work perfect. i have upload my projet to my server when i open my form i get this error Fatal error: Class 'sfWidgetFormReCaptcha' not found i have check all files have exist in the server i have do symfony

[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-06 Thread Belgacem TLILI
in symfony.. I thought it was meant as a JS function.. So you might want to remove the again. Did you include the JS-Helper? ?php use_helper('Javascript')? Am 06.04.2010 00:13, schrieb Belgacem TLILI: i'm using jquery to get the ajax action this my code in the template script

[symfony-users] Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Belgacem TLILI
i'm using sf 1.4 and i'm searching to embed a form using ajax i start with echo javascript_tag( remote_function(array( 'update' = 'myzone', 'url' = 'mymodule/myaction', )) ) ? i have use the java script helper in my template ?php use_helper('JavascriptBase') ? but i have an

[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Belgacem TLILI
: echo javascript_tag(remote_function(array(      'update'  =  'myzone',      'url'     =  'mymodule/myaction',    )) ) ? you need the because otherwise its interpreted as an PHP-function.. Am 05.04.2010 23:31, schrieb Belgacem TLILI: i'm using sf 1.4 and i'm searching to embed a form

[symfony-users] Re: Fatal error: Call to undefined function remote_function()

2010-04-05 Thread Belgacem TLILI
i'm using jquery to get the ajax action this my code in the template script $(#MyButton).click(function() { remote_function(array(update=item_list,url=cap/new)); }); /script i have not any result ? -- If you want to report a vulnerability issue on symfony, please send it to security at

[symfony-users] how to build my pernal form

2010-04-01 Thread Belgacem TLILI
im' searching to do a personnal forms but i have not any idea how to build it plz help meee -- 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 Groups symfony users

[symfony-users] embeding form by ajax

2010-03-30 Thread Belgacem TLILI
i'm searching for an exemple of how to embed form in a main form using ajax i have an idea about but i can't find an exemple to do this plz help me -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because

[symfony-users] how get an object saved in session

2010-03-23 Thread Belgacem TLILI
i have save an object ($book) in the user session with the name bk $this-getUser()-setAttribute('bk',$book); i need to save this object in the database after other actions i use $book= $this-getUser()-getAttribute('bk'); $book-save(); but this return all time null anybody have an idea plz

[symfony-users] Re: how get an object saved in session

2010-03-23 Thread Belgacem TLILI
. On 3/23/10, Belgacem TLILI belgacem0...@gmail.com wrote: i have save an object ($book)  in the user session with the name bk $this-getUser()-setAttribute('bk',$book);  i need to save this object in the database after other actions i use $book= $this-getUser()-getAttribute('bk

[symfony-users] Re: how get an object saved in session

2010-03-23 Thread Belgacem TLILI
now i have save the form fiels in an array then i have save this array in the user session $forms1= Array($form-getValues()); $this-getUser()-setAttribute('etab',$forms1); then: $a=$this-getUser()-getAttribute('etab'); $b=$a[0]; this return null ?? On Mar 23, 3:09 pm, Tom Haskins-Vaughan

[symfony-users] Re: how get an object saved in session

2010-03-23 Thread Belgacem TLILI
$a[0] means it will return the 1st box of my array, On Mar 23, 5:02 pm, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: What does this produce:   var_dump($a); On Tue, Mar 23, 2010 at 11:57 AM, Jérémie jeremie.symf...@gmail.com wrote: Belgacem TLILI wrote: now i have save the form

[symfony-users] Re: how get an object saved in session

2010-03-23 Thread Belgacem TLILI
it's an array On Mar 23, 5:40 pm, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: But is it an array or an object with an array interface? On Tue, Mar 23, 2010 at 12:19 PM, Belgacem TLILI belgacem0...@gmail.com wrote: $a[0] means it will return the 1st box of my array, On Mar 23

[symfony-users] Re: unsing unsetAllFieldsExcept to unset a field of an embeded form

2010-03-20 Thread Belgacem TLILI
any one have an idea please this is the biggest problem in my project Alexandru-Emil Lupu thanks for all your help On 19 mar, 13:50, Belgacem TLILI belgacem0...@gmail.com wrote: i have an error about getEmbededForm other things the function unsetAllFieldsExcept is in the file

[symfony-users] unsing unsetAllFieldsExcept to unset a field of an embeded form

2010-03-19 Thread Belgacem TLILI
Hello for all Sf dev, i'm using the function unsetAllFieldsExcept to get a form in 2 steps like this exemple http://www.iw2.fr/2009/08/28/symfony-formulaire-en-plusieurs-etapes/ my problem is : i would like to unset a fields for an embed form i call the unsetAllFieldsExcept function here to

[symfony-users] Re: unsing unsetAllFieldsExcept to unset a field of an embeded form

2010-03-19 Thread Belgacem TLILI
(array( 'name','email' , 'form2[books]' ) ); to : $this-unsetAllExcept(array( 'name','email' ) ); if ($this-getEmbededForm('form2') instanceof form2Form ) {   $this-getEmbededForm('form2')-unsetAllExcept('book'); } Alecs On Fri, Mar 19, 2010 at 12:26 PM, Belgacem TLILI belgacem0

[symfony-users] Re: help il list

2010-03-14 Thread Belgacem TLILI
   job_category_id: integer    sub_category:       type: string(50)   relations:     jobCategory:       type: one       foreignType: many       onDelete: SET NULL jobCategory:   columns:     name: string(128) Belgacem TLILI wrote: i have this class job:   connection: doctrine   tableName: job

[symfony-users] Re: help il list

2010-03-13 Thread Belgacem TLILI
more feedback. Ciao On 13 Mrz., 01:02, Belgacem TLILI belgacem0...@gmail.com wrote: i have this class job:   connection: doctrine   tableName: job   columns:     id_marchandise:       type: integer(4)       primary: true       autoincrement: true    category:       type

[symfony-users] i need help urgent

2010-03-11 Thread Belgacem TLILI
hello for all symfony users, i have a problem with my symfony project i have two forms ** main form for user ** embed form for phonenumber the relation between user and phonenumber is one-many in the model phonenumber i have a column id_user in the file : UserForm.class.php i have ahh this

[symfony-users] Re: i need help urgent

2010-03-11 Thread Belgacem TLILI
with the foreignkey from form2 3= and finally save the object of form3 with the key from the mainform i don't know if i must define the save function or what ? help me please On Mar 11, 4:49 pm, Eno symb...@gmail.com wrote: On Thu, 11 Mar 2010, Belgacem TLILI wrote: hello for all symfony users

[symfony-users] Re: i need help urgent

2010-03-11 Thread Belgacem TLILI
or saveEmbededForms method 3. Make sure that you are using the 3rd form ... the rest should be embeded... Form2 is embeded in Form1 which is embeded Form3 ... After just call new Form3(); Alecs On Thu, Mar 11, 2010 at 8:52 PM, Belgacem TLILI belgacem0...@gmail.comwrote: think you  Eno, this does