Re: [symfony-users] Question about object routing and slugging

2010-07-13 Thread Gábor Fási
The slug field needs to be a real column, not a virtual one that you created. When the url is accessed, doctrine is looking for a single object matching the fields found in the url - in your case, no fields, that's why you see the very first record in your table. The query logger should show someth

[symfony-users] Question about object routing and slugging

2010-07-13 Thread Javier Garcia
Hi, in order to not show the ID's of the members of my social network in the URL, I have created this route: perfil_miembro: url: /miembros/:nombre_apellidos class: sfDoctrineRoute options: { model: Usuario, type: object} param: { module: miembros, action: show} and added this line in