[symfony-users] [Sf2] Doctrine authentication and login_check

2011-01-13 Thread taidehuone
Hello all, Exactly what initiates a login procedure in symfony2? It seems to me that there's a lot of magic stuff that's supposed to happen and symfony2 itself would handle most of the validation, but what triggers this process? I have been trying to create a database entity based authentication

[symfony-users] Taxonomy / Classification in Symfony

2011-01-13 Thread info contact
Hi, I am building a content driven forum website, where I am interested in auto-categorizing content into a taxonomy based on the text of the data. Is there any plugin or any easy way to do with Symfony. I am looking to have my own taxonomy. eg: Books = Computers, Books = Fiction etc.. based on

Re: [symfony-users] Re: A simple Wiki written in Symfony 2 (aka an interesting sandbox-derived practice project)

2011-01-13 Thread taidehuone
Thanks as well from Finland and thumbs up if you're writing any articles on this. I've been constructing a rather large community site with different account types, a blog system, a portfolio system and a job search system for the past couple of months on the very familiar sf1.4 but now I decided

Re: [symfony-users] Symfony form

2011-01-13 Thread sinu govind
Justin, Thanks a lot. The link you gave me really helped me in achieving what I wanted On Wed, Jan 12, 2011 at 5:16 PM, Justen Doherty phpc...@gmail.com wrote: Hi Sinu, You can have a look at the form rendering section on:

[symfony-users] Encoder error after login

2011-01-13 Thread Duffman
After login i get the error-message: Uncaught exception 'RuntimeException' with message 'Each encoder needs an account class. My config: security.config: encoder: Symfony\Component\Security\User\User: plaintext providers: main: users: florian: { password: test,

[symfony-users] How to hide the label of the object actions in the backend list?

2011-01-13 Thread Javier Garcia
Hi, how to hide the label of the object actions? I've tried these below (separately of course...) but noone of them works ok. object_actions: _delete: {label: ' '} _delete: {label: ' '} _delete: {label: false} _delete: {label: none} sf 1.4

[symfony-users] Re: After installing sfPropel15Plugin: error when i try to build classes

2011-01-13 Thread Javier Garcia
no idea? On Jan 11, 5:07 pm, Javier Garcia tirengar...@gmail.com wrote: Hi, when i do propel:build --all-classes i get these errors below. I have followed the instructions that are in the README. sf 1.4 schema    converting /home/javier/program...rueba1/config/schema.yml to XML

[symfony-users] Best practice for generate Complex URL

2011-01-13 Thread Vikos
Hello! In my current project there are some url width 4 or more parameter. eg.: This URLs for same list, and rooted to same action. url: /activity/:id/tasks/:type/:order/:desc url: /activity/topic/:id/tasks/:type/:order/:desc ids are both required! the :type is the type of the list

[symfony-users] Trying to adapt lcOpenInviterPlugin 0.9.3 for symfony 1.4.8

2011-01-13 Thread dmitrypol
My users need to import contacts from various address books. I am trying to use lcOpenInviterPlugin even though it's only supported for Symfony 1.2 and I am running 1.4.8. After deploying plugin I got Fatal error: Class 'sfValidatorChoiceMany' not found in

[symfony-users] Re: After installing sfPropel15Plugin: error when i try to build classes

2011-01-13 Thread Gabriel Petchesi
Do you have propel 1.5 plugin activated in config/ProjectConfiguration.class.php ? The getUniqueColumnNames() shows up with propel 1.5 and was not available with propel 1.4 shiped with Symfony (double check this). gabriel -- If you want to report a vulnerability issue on symfony, please

[symfony-users] [symfony2] form_errors() and validation groups problems

2011-01-13 Thread Aaron DM
Hey, Not sure if I am doing something wrong or this is just a bug, but if I set a validation group for a class of mine and then I use: {{ form_errors(form) }} No errors are displayed (however $form-isValid() is returned false, indicating that there are errors). Removing the validation group

[symfony-users] Column not found: 1054 Unknown column 'sf_guard_group.ID' in 'where clause'

2011-01-13 Thread Javier Garcia
Hi, i have this code: $c-addMultipleJoin(array( array(UserProceduraPeer::USER_ID, sfGuardUserProfilePeer::USER_ID ), array(UserProceduraPeer::USER_ID, sfGuardGroupPeer::ID), CRITERIA::INNER_JOIN)); but I'm getting this error:

[symfony-users] [plugin] sfDoctrineGuardCulturePlugin - plugin working with sfDoctrineGuard for manage user culture.

2011-01-13 Thread Whisller
Hi, Couple of days I have wrote a plugin sfDoctrineGuardCulturePlugin (https://github.com/whisller/sfDoctrineGuardCulturePlugin) that allow you to manage cultures on your site. It is small plugin that allow you: * define available cultures (you can define callback method which will be execute

[symfony-users] [Symfony 2 sandbox] Controller service id convention

2011-01-13 Thread dbenjamin
Hi, I'm trying desperately to use setter injection within a bundle. I have a bundle named NewsBundle under src/Bundle/NewsBundle. The NewsBundle adds an Extension to container like (simplified version) : public function configLoad($config, ContainerBuilder $container) { $loader

[symfony-users] Re: I18n + Umlauts: not working without utf8_encode

2011-01-13 Thread Zach
I am having the exact same problem. Curious what you did about this. Any help is much appreciated. Thanks, Zach -- 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

[symfony-users] Re: I18n + Umlauts: not working without utf8_encode

2011-01-13 Thread Gabriel Petchesi
Post your config/databases.yml, it should have the encoding line (last line): all: propel: class:sfPropelDatabase param: classname: PropelPDO encoding: utf8 gabriel -- If you want to report a vulnerability issue on symfony, please send it to