[symfony-users] Re: integrating galleria into symfony 1.4

2010-06-16 Thread el-sid
It finally worked...firebug was a big help. turns out the hunch i had was right. Galleria.loadTheme('/js/galleria/themes/galleria.classic.js'); was the problem since it was returning a 404 not found in firebug. The above format you suggested was right only that my path was a little messed up.

[symfony-users] Question about a dialog form and submit errors

2010-06-16 Thread Javier Garcia
Hi, I have the link below that executes the action message/new which shows a form inside a jqueryui modal dialog. div id=myDialog /div echo jq_link_to_remote('Enviar mensaje', array( 'url' = 'mensaje/new?receptor='.$miembro-getId().'tipo=0estado=0', 'update' =

[symfony-users] Re: Form helper on symfony 1.4

2010-06-16 Thread Phil Moorhouse
A Gentle Introduction... is meant to be current documentation though so this should be fixed. Gustavo, please report the issue here: http://trac.symfony-project.org/newticket with type=documentation and component=form and someone with commit access to the docs will hopefully remove the bad

[symfony-users] Re: sfWidgetFormChoice

2010-06-16 Thread Joe
It worked ! Thank you ^^ On Jun 15, 1:18 pm, Gábor Fási maerl...@gmail.com wrote: choices = array(   choice1 = choice1,   choice2 = choice2, ); On Tue, Jun 15, 2010 at 10:24, Joe joe.hakim.ra...@gmail.com wrote: I am working on a module generated by the admin generator. I added the

[symfony-users] Re: Too many redirects error on symfony.

2010-06-16 Thread pghoratiu
Check the symfony logs - there should be some info about the filters executed and redirects performed. gabriel On Jun 16, 4:17 pm, Bruno Reis bruno.p.r...@gmail.com wrote: any hints? 2010/6/14 Bruno Reis bruno.p.r...@gmail.com: Hi, I´m using a filter with the following code to

[symfony-users] Re: Form helper on symfony 1.4

2010-06-16 Thread Gustavo Fonseca
Actually this feature now is available as a sfWidgetFormI18nChoiceCountry object, but i think this transition was not well documented. On 16 jun, 10:25, Phil Moorhouse moorhouse.p...@gmail.com wrote: A Gentle Introduction... is meant to be current documentation though so this should be fixed.

[symfony-users] Re: Too many redirects error on symfony.

2010-06-16 Thread Tom Ptacnik
I think that this code will redirect to http even if I'm on http right. And same with https. I'm on https and this filter redirect me to https again.. So I advice to insert conditions...I'll show it on pseudocode if (ImNotOnHTTP $sslEnabled !$secureRequest) { redirect to http }

[symfony-users] Call to undefined function.

2010-06-16 Thread Dan
Hello, I have the following error, and after killing my nerves googling for it, I posted here. Does anyone knows how I can get rid of this stupid error? Fatal error: Call to undefined function include_component() in Everything else works, pages, modules, routing etc. but this doesn't Thanks.

[symfony-users] Re: Call to undefined function.

2010-06-16 Thread pghoratiu
It's part of the PartialHelper.php modify your config/settings.yml to include it by default: all: .settings: standard_helpers: [I18N, Partial] or prepend use_helper('Partial') at the top of your template. Check the manual. gabriel On Jun 17, 8:28 am, Dan

Re: [symfony-users] Re: Call to undefined function.

2010-06-16 Thread Dan Harabagiu
True, thanks. On Thu, Jun 17, 2010 at 8:46 AM, pghoratiu pghora...@gmail.com wrote: It's part of the PartialHelper.php modify your config/settings.yml to include it by default: all: .settings: standard_helpers: [I18N, Partial] or prepend use_helper('Partial') at the top of your