Hi,When I submit a form that has password fields in it, if the form contained validation errors, it[...]
hiI'm using symfony 1.4 with doctrine...if I use strong password in database.yml, for example like [...]
HiMy bundle use FOSUserBundle Entity. But I need to set password nullable = true for my bundle. How[...]
I have an user entity with an add form and a edit form.The add form contains the fields 'Password' [...]
I need to create a Symfony 2 custom class constraint validator, to validate that a property is not equal to another (i.e. password can't match username). My first question is: do I need to implement method getDefaultOption() and what's is used for? /** * @Annotation */ class [...]
I am getting the following error, with the code below: ServiceNotFoundException: The service "security.firewall.map.context.main" has a dependency on a non-existent service "security.user.provider.concrete.fos_user_bundle". This happened after I added the chain_provider: provide[...]
I am using FOSUserBundle and FOSUserFacebookBundle to authenticate my users. The issue is that when I visit my /login page. I have two text field with a username and password. When I input my username and password, I am getting the following error: The Facebook user could not be r[...]
Actually I have five simple projects based on Symfony 2.0. Each project has user management using Doctrine ORM. Among bundles, User class has very few differences. Bundle1 may add "business name" attribute, Bundle2 may add "inbound communications" relationship. But all share the s[...]
i'm trying to create an custom security Bundle. I could manage to have something working (long and hard :-) ). Except that when I have an authentication error somewhere, i'd like to be rerouted to a "logout" page and not the login one. I thought changing the security.yml this wa[...]
I need to authenticate a user in symfony2. The issue I am having is that my user is authenticated over a rest service. I send a login and password to this service and I receive the user and session as a response, or error. It seems that in order to grant access to a firewall, I [...]