[symfony-users] suffix to links on page

2010-08-03 Thread RaV
Hi again, is there any possibility to add const suffix to all of links on my page? For example i have link like this: http://myapp/1,computers?q=search_text , where 1 means the first page and.. while i'm using link_to in template to build links for change sort order or order column or something

Re: [symfony-users] Re: How to add new type to schema?

2010-08-02 Thread RaV
Thanks for your answer. Unfortunatelly I'm using Propel and can't change it into Doctrine. Rafał On Tue, Aug 3, 2010 at 12:38 AM, Stéphane stephane.er...@gmail.com wrote: AFAIK Doctrine manages the Inet type when using pgSql. http://www.symfony-project.org/doctrine/1_2/en/04-Schema-Files

[symfony-users] Re: data-load

2009-02-25 Thread RaV
On Tue, Feb 24, 2009 at 7:31 PM, Andy Dziahel' trickster...@gmail.comwrote: Hi. Looks like you just forgot to make `portal_user`.`id` autoincremented. On Tue, Feb 24, 2009 at 19:02, RaV inad...@gmail.com wrote: Hi! I have a problem with propel-load-data. I wrote my fixture: data

[symfony-users] Re: data-load

2009-02-25 Thread RaV
not sure, but try giving it NULL attibutes with ~: ... portal_user: _attributes: { phpName: PortalUser } id: ~ ... Hope this helps. Tom RaV wrote: How to make id autoincremental ? I thought that symfony did it for me. Piece of schema.yml file

[symfony-users] Re: data-load

2009-02-25 Thread RaV
AUTO_INCREMENT, `name` VARCHAR(255) NOT NULL, So, what is wrong with pgsql? Thx! Rafał 2009/2/25 Tom Haskins-Vaughan t...@templestreetmedia.com You have to rebuild your model first then rebuild the sql. RaV wrote: Doesn't work :( portal_user: _attributes: { phpName

[symfony-users] data-load

2009-02-24 Thread RaV
Hi! I have a problem with propel-load-data. I wrote my fixture: data/fixtures/data.yml: PortalUser: portuser_1: login: login password: adf name: Rafal surname: B created_at: 2008-12-26 updated_at: 2008-12-26 email: ra...@bednario.glu is_admin: true