[symfony-users] Question of _partial in list of admin-generator

2010-08-04 Thread Eduardo Lagares
Good night, I like know how i access the value of field in a _partial column in the list, generated by admin-generator i have the file _blocked.php how i will go access the value of this column in this file? thanks. -- If you want to report a vulnerability issue on symfony, please send it to

[symfony-users] Re: Problem with filters

2010-08-04 Thread florian périn
I want this filters to do the role of filter. When I choose for exemple 'non' on enligne, there are only families with 0 on the column enligne. But when I chose this, there is not generated SQL query... So I don't know what to do. On 3 août, 16:35, Tom Ptacnik to...@tomor.cz wrote: What do you

[symfony-users] Re: a good IDE for Symfony

2010-08-04 Thread Zdanek
come on - just use emacs ! On 4 Sie, 07:58, pghoratiu pghora...@gmail.com wrote: Check out Komodo edithttp://www.activestate.com/komodo-edit some of my colleagues use it. I think that with your configuration any java based editor should work fine, make sure you configure properly the java

Re: [symfony-users] a good IDE for Symfony

2010-08-04 Thread Eno
On Wed, 4 Aug 2010, [ISO-8859-1] Stéphane wrote: You can try VIM too (really). For years Ive been writing code quite happily with vim. Apart from being available on almost every platform, its light and fast (I find most IDE's slow and bloated). Also you have the added advantage of being able

[symfony-users] sfDoctrineApplyPlugin-1.1.1: trying to give a default value to a sfApplyApplyForm field.

2010-08-04 Thread Javier Garcia
Hi, Im trying to give a default value to sfApplyApplyForm, so at the end of the configure method i add this: $this-setDefault('username', 'John Smith'); But when I render the form the default value doesn't appear.. Any idea? Javi -- If you want to report a vulnerability issue on symfony,

Re: [symfony-users] a good IDE for Symfony

2010-08-04 Thread Gareth McCumskey
For me the biggest aspects of using an IDE like Eclipse is simply that, while it may be bloated and slow to load at times, that it actually speeds up my coding. Auto-completion of class method names for example in a class that is a few directories removed from the one my current file is in. PHP

[symfony-users] Re: Customize admin generator to parse generator.yml with custom properties

2010-08-04 Thread Thor
Thank you Tom! today i found a bette solution! it's more solid than the solutoin posted in the first link you provided, and i guess it's easier. i don't know how, but in all this time i had the solution under my nose, but i couldn't see it: i was right suspecting that the place to act was the

[symfony-users] Re: multiples INSERT

2010-08-04 Thread B.O.G
part of my schema: ## comunication ## comunicacion: actAs: { Timestampable: ~, Signable: ~ } columns: id: { type: integer, primary: true, autoincrement: true } user_id: { type: integer, notnull: true } direccion_id:{ type: integer, notnull:

[symfony-users] Re: How to validate values from $GLOBALS[HTTP_RAW_POST_DATA]

2010-08-04 Thread Grzegorz Śliwiński
Thanks Gareth, I'll have to play it. I wanted to validate sent image and save it because we have already defined how to save files in form. On 3 Sie, 15:43, Gareth McCumskey gmccums...@gmail.com wrote: Simple answer .. don't. You should be able to accept requests through symfony's post handlers

[symfony-users] Re: a good IDE for Symfony

2010-08-04 Thread Massimiliano Arione
On 4 Ago, 07:58, pghoratiu pghora...@gmail.com wrote: Check out Komodo edithttp://www.activestate.com/komodo-edit some of my colleagues use it. I also use Komodo and advice to use it. It's fast, open, cross-platform. cheers Massimiliano -- If you want to report a vulnerability issue on

[symfony-users] Re: Symfony 1.4 and PayPal

2010-08-04 Thread Massimiliano Arione
On 3 Ago, 03:11, Diego Bello dbe...@gmail.com wrote: I'm building an e-commerce site with Symfony 1.4. Right now I have the shopping cart and I want to do the payment with Paypal. I got the expresscheckout.php and paypalfunctions.php files but I don't know where to put them. First place to

[symfony-users] My attempt of a security/form strategy

2010-08-04 Thread mlu...@gmail.com
Hi! I want to show you my attempt of a security/form strategy and want to know what you are thinking about it. *The problem:* If I read the source correct the CSRF_token is made of the session id and the class name of the form. When you load a form and submit it after a certain time you get a

Re: [symfony-users] Re: Symfony 1.4 and PayPal

2010-08-04 Thread Diego Bello
On Wed, Aug 4, 2010 at 10:01 AM, Massimiliano Arione garak...@gmail.comwrote: On 3 Ago, 03:11, Diego Bello dbe...@gmail.com wrote: I'm building an e-commerce site with Symfony 1.4. Right now I have the shopping cart and I want to do the payment with Paypal. I got the expresscheckout.php

[symfony-users] issues after moving form code to a plugin

2010-08-04 Thread Daniel Kucharski
In, In the progress of moving some of my doctrine / symphony 1.4 based project to a plugin I am facing problems generating form classess located in the new plugin. Beneath an excerpt of generated classes in this folder: /lib/forms/base/PluginBrandForm.class.php

[symfony-users] [SYMFONY 1.4] Session timeout problem

2010-08-04 Thread Gustavo Adrian
Hi, I'm using sfDoctrineGuardPlugin. My backend session always ends after 5 or 10 minutes if its idle. I've tried to change on factories.yml: *user:* *class: myUser* *param:* * timeout: 86400* And.. * storage:* *param:* * session_cookie_lifetime: 86400* But

Re: [symfony-users] [SYMFONY 1.4] Session timeout problem

2010-08-04 Thread Nibsirahsieu
yes.. i have the same problem too.. (i'm using sfGuardPlugin).. in my localhost.. it's work fine.. but in my production server, it's never get work On Thu, Aug 5, 2010 at 8:31 AM, Gustavo Adrian comfortablynum...@gmail.comwrote: Hi, I'm using sfDoctrineGuardPlugin. My backend session always

[symfony-users] Re: Session timeout problem

2010-08-04 Thread pghoratiu
Check out also the session variables that can be set up in session.ini: session.gc_maxlifetime Depending on the OS you use there may be other things to consider as well. gabriel On Aug 5, 4:31 am, Gustavo Adrian comfortablynum...@gmail.com wrote: Hi, I'm using sfDoctrineGuardPlugin. My