[symfony-users] Re: Trying to translate sfDoctrineGuardPlugin

2010-04-13 Thread Fernando Navarro Páez
Hi, Tom. In symfony 1.4.3, sfDoctrineGuardPlugin 4.0.1, cc, cookies, cache and active sessions deleted, it doesn't work. Login form is in english In xxx\apps\my_app\i18n folder I have sf_guard.es_ES.xml translation file From Debug: User details options: culture: null default_culture:

Re: [symfony-users] sfWidgetFormSelectDoubleList order of items?

2010-04-13 Thread Robert Heim
any hints or tipps? :-/ Am 09.04.2010 14:45, schrieb comb: Hi I have a many-To-many (Gig-Song) relation and want to use sfWidgetFormSelectDoubleList. It work's fine, but I want to save the order of assignments, too (and not only associated /unassociated ). schema.yml: # many-To-many-relation

[symfony-users] Some doubts

2010-04-13 Thread fRAnKEnSTEin
hi, I'm new in symfony, and i have some doubts about forms creation, by the way, i have been following this tutorial: http://www.symfony-project.org/forms/1_4/en/01-Form-Creation 1- Why in symfony all the HTML elements like inputs, selects etc should be created using php rendering? dont

[symfony-users] Re: Some doubts

2010-04-13 Thread fRAnKEnSTEin
Hi, Thank you very much Dennis Benkert and Peter Petrik help me alot! 1- About the debbuging app i already installed xdebug on my system, but rather than use that with an IDE like netbeans or eclipse, i just one to print the value of some variable in the screen. Just as simple as that, for

Re: [symfony-users] Re: Some doubts

2010-04-13 Thread Gareth McCumskey
On Tue, Apr 13, 2010 at 9:35 AM, fRAnKEnSTEin shirkav...@gmail.com wrote: Hi, Thank you very much Dennis Benkert and Peter Petrik help me alot! 1- About the debbuging app i already installed xdebug on my system, but rather than use that with an IDE like netbeans or eclipse, i just one to

Re: [symfony-users] Re: Some doubts

2010-04-13 Thread Gareth McCumskey
Oh and the accessing the form values from contact[%s] ... the point of the forms framework is that you shouldn't have to acess them directly with getParameter() as those values are still unvalidated: $form_object = new FormObject(); $form_object-bind($request-getParameter('contact')); if

Re: [symfony-users] Widgets and Validators

2010-04-13 Thread Gareth McCumskey
The answer is easy. It needs to be required first. If it is over max_length it just ignores it because its not required, so just add a 'required'=true to the validator array $this-setValidators(array( 'LoginId' = new sfValidatorString(array( 'max_length' = 6,

Re: [symfony-users] Time schedule of an action

2010-04-13 Thread Dennis Drakopoulos - LEXIS SA
Great, many thanks! Any latest guide on how to make an action into a task? I have discovered several but do not know which one is proper for Symfony 1.4 Take care! Original Message Subject: Re: [symfony-users] Time schedule of an action From: Richard U richard@gmail.com

[symfony-users] Best way to implement a multi step form

2010-04-13 Thread Juampy72
Hi all, I need to split a form it in various steps. So far, I have created a single Form class with all the fields but, how could I implement in in consecutive pages? I was thinking about saving form data from step 1 to step 2 in the session, but I may have problems with form serialisation. Any

[symfony-users] Help - transfer of projects brings up errors

2010-04-13 Thread xris
Hi, i recently trained on symfony and wanted to install the same projects we did to my ubuntu box back at home. i have already done the webserver configuration but when i try to access the jobeet application i get the following error: my previous user was symfony and current user is

[symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread Vapirov
http://blog.adryjanek.eu/2009/03/24/symfony-12-and-multipage-form-wizard/ On 13 апр, 14:03, Juampy72 juamp...@gmail.com wrote: Hi all, I need to split a form it in various steps. So far, I have created a single Form class with all the fields but, how could I implement in in consecutive

Re: [symfony-users] Help - transfer of projects brings up errors

2010-04-13 Thread Eno
On Tue, 13 Apr 2010, xris wrote: i recently trained on symfony and wanted to install the same projects we did to my ubuntu box back at home. i have already done the webserver configuration but when i try to access the jobeet application i get the following error: my previous user was symfony

[symfony-users] Update password form

2010-04-13 Thread Romain Pouclet
Hi all, I'm working on a simple form so my user can update his firstname, lastname, email and password informations, here is was I've done so far : ?php class noeGuardUpdateProfileForm extends sfGuardUserForm { public function configure() { parent::configure();

[symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread AJStoneham
Is the standard way to go through a mult-step work-flow? I would like to know too. I don't think you will have a problem with your approach. I think back in the day I had problems serializing forms because some widgets had an unrealizable database/pdo handle bound to them, but I think its a non

[symfony-users] Re: Handle form error in the action

2010-04-13 Thread Richtermeister
Hey there, ah, ok. In that case I think throwing custom exceptions that extend the sfValidatorError would be in order. Just catch those in the actions, and depending on their type you'll know which error occurred. I'm doing something similar where in my setup the credit card validator can throw

[symfony-users] Where is frontend.php after deploying?

2010-04-13 Thread Javier Garcia
Hi, after deploying using sf 1.3, where is frontend.php? I didn't get any error during the deployment process. How should i access my project in production? In sf 1.2 i did somethig like this : http://www.tirengarfio.com/rs1/web/frontend.php but now? -- Javi Ubuntu 8.04 -- If you want

Re: [symfony-users] Where is frontend.php after deploying?

2010-04-13 Thread Michał Piotrowski
2010/4/13 Javier Garcia tirengar...@gmail.com: Hi, after deploying using sf 1.3, where is frontend.php? I didn't get any error during the deployment process. Did you used rsync? What's in config/rsync_exclude.txt ? How should i access my project in production? In sf 1.2 i did somethig

Re: [symfony-users] Where is frontend.php after deploying?

2010-04-13 Thread Alan Bem
Well, by default there is no frontend.php - there's only index.php. Maybe that is your answer. 2010/4/13 Michał Piotrowski mkkp...@gmail.com 2010/4/13 Javier Garcia tirengar...@gmail.com: Hi, after deploying using sf 1.3, where is frontend.php? I didn't get any error during the

[symfony-users] Re: Where is frontend.php after deploying?

2010-04-13 Thread Javier Garcia
On Apr 13, 7:55 pm, Alan Bem alan@gmail.com wrote: Well, by default there is no frontend.php - there's only index.php. Maybe that is your answer. Thanks! works. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this

[symfony-users] Installing a plugin manually. From one project to another

2010-04-13 Thread Javier Garcia
Hi, i have the folder plugin/sfDoctrineGuardExtraPlugin in a project and it's working ok. I want to copy it to another project so i copied that folder to the folder 'plugins' of the other project. I have typed plugin:publish-assets in the second project but it doesnt show the new plugin.

Re: [symfony-users] Installing a plugin manually. From one project to another

2010-04-13 Thread Gábor Fási
You have to enable it in the project's configuration. On Tue, Apr 13, 2010 at 21:09, Javier Garcia tirengar...@gmail.com wrote: Hi, i have the folder plugin/sfDoctrineGuardExtraPlugin in a project and it's working ok. I want to copy it to another project so i copied that folder to the

[symfony-users] Re: Installing a plugin manually. From one project to another

2010-04-13 Thread Javier Garcia
Tahnks On Apr 13, 9:21 pm, Gábor Fási maerl...@gmail.com wrote: You have to enable it in the project's configuration. On Tue, Apr 13, 2010 at 21:09, Javier Garcia tirengar...@gmail.com wrote: Hi, i have the folder plugin/sfDoctrineGuardExtraPlugin in a project and it's working ok. I

[symfony-users] Re: doctrine schema for admin_check_list ?

2010-04-13 Thread webdev_aw_ucsb
Greeting again -- I was able to get the following schema to work for an M:M relationship between people and days-of-the-week (A person can have many days of the week) ... Can a doctrine_admin_check_list be used in the Edit admin-generator to manage this relationship? # Schema.yml --- Person:

[symfony-users] Bug on sfCacheSessionStorage: feedback needed (#8535)

2010-04-13 Thread Paulo Magalhaes
Hi everyone, I bumped into an issue when using sfCacheSessionStorage. Because it doesn't set a Cache-Control header, a page generated for a user can be delivered to the wrong user from a web proxy allowing him to take over another user credentials, even if by accident. The complete details

Re: [symfony-users] Re: Best way to implement a multi step form

2010-04-13 Thread Lee Bolding
There's several workflow plugins in the plugin repo that may be worth investigating (pageflow, especially) I know there's a pretty complex one based around the eZ Workflow component - I looked at that a while back with a view to creating a plugin along the lines of Spring WebFlow... On 13 Apr

[symfony-users] Re: sfGridPlugin, Propel/Doctrine-DataSources, ObjectPaths and JavaScript (ExtJS) extensions

2010-04-13 Thread Leon van der Ree
Hi All, today I have added the start of routing-engine for grids. DigitalBase has provided a redmine issue-tracker for us at https://symfony.digitalbase.eu/ This way we can report bugs and cooperate much easier, so feel free to report and improve the plugins! On 12 apr, 15:11, E_lexy

[symfony-users] hl7

2010-04-13 Thread Samuel Morhaim
Is anyone in the group familiar with Hl7 formats? I am looking to hire a developer for a small project. Thank you. (sorry is this out of topic..) -- 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

[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: Some doubts

2010-04-13 Thread fRAnKEnSTEin
yeah! everything works! thanks Gareth McCumskey and the others ;) -- 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 group. To post to this group,

[symfony-users] Form help

2010-04-13 Thread José Pais
Hi, i need some help, i'm a symfony newbie. i have a new object and when i create one in the form i have the author field, which is conect to sf_guard_user table, so in that field apears a list of every users to me chose one. i wanna get the author automatically by the author which is logged. How