0
votes
0answers
12 views

Symfony2: Custom AuthenticationProvider leads to a AuthenticationCredentialsNotFoundException

I currently develop my custom AuthenticationProvider (Symfony 2.1) which is quite similar to the form login. My authentication listener's handle() function does check whether the request matches the ...
0
votes
0answers
21 views

Authentication against database, Active Directory and Radius in Symfony?

I'm using Symfony2 as framework but up until now I was using my own code for authentication and authorization. I decided to give Symfony's security system a try and after following the tutorial on its ...
0
votes
1answer
59 views

Symfony2 OAuth2 login stuck in infinite redirect loop

I'm using the HWI OAuth Bundle to allow users to login with Google Apps. It allows the user to login as expected. However, after about 5 minutes the cookie expires and it tries to redirect to /login, ...
0
votes
0answers
30 views

simple HTTP authentication logs Notice: unserialize():

I am trying to login with simple HTTP on symfony2. When I put in the wrong credentials I get: INFO security.INFO: Authentication request failed for user "dsflk": Bad credentials [] [] When I try ...
1
vote
1answer
43 views

Symfony2 - AuthenticationSuccessHandler redirect to original request

I've overridden AuthenticationSuccessHandler but I'd like to keep the referer redirection behavior on success. I saw that the default handler uses $request->headers->get('Referer'), I tried to ...
0
votes
1answer
46 views

Symfony2 Entity Authentication doesn't work for me

I am learning how to use Authentication in Symfony2, with usernames comming from an Entity (MySQL database). I've created a simple table in PhpMyAdmin : INSERT INTO `user` (`id`, `username`, ...
0
votes
1answer
41 views

Symfony2 Two conflicted authentication listeners

I have created custom authentication. But for the reasons me unknown there are two active authentication listeners. So authentication provider manager is called Twice. Firsty AuthListener is called, ...
0
votes
0answers
59 views

how to use custom AuthenticationSuccessHandler with BeSimpleSsoAuthBundle?

I'm new symfony2, and I use BeSimpleSsoAuthBundle to authenticate my user from CAS, it's worked well. And now I want to record the user login time after they authentication success. namespace ...
0
votes
2answers
44 views

Symfony2 - secure everything

I write an application in which I need to have everything (except login page) secured and redirect to login. I tried solution from http://symfony.com/doc/master/book/security.html (Avoid Common ...
-1
votes
2answers
47 views

Authenticate user whose data get from 2 separate tables / entities

Below is my database schema: user uid * username user_auth uid * password With this kind of schema, I got big problems with Symfony2 Authenticate. I've ...
0
votes
1answer
62 views

Symfony2 - FOS UserBundle - Original request redirection

I'm using FOS UserBundle and I have defined a custom AuthenticationSuccessHandler to show a different home page depending on the roles, but I think it should be called only if the user originally ...
0
votes
1answer
125 views

Symfony2 how to pass parameters to auth success handler

when symfony2 authenticates user by login form, an event security.authentication.success is fired and is handled by DefaultAuthenticationSuccessHandler. Constructor of this object takes two arguments ...
2
votes
2answers
198 views

Symfony2 extending DefaultAuthenticationSuccessHandler

I want to alter default authentication process just after authentication success. I made a service that is called after authentication success and before redirect. namespace ...
0
votes
1answer
129 views

Do something just after symfony2 login success and before redirect?

I'm searching for a while now, for any info, on how to do something after authentication success in symfony2. I want to rehash user password to use bcrypt just after successful authentication using ...
1
vote
2answers
34 views

Using UsernamePasswordForm authentication with a custom AuthenticationProvider

I'm struggling with a custom authentication mechanism for Symfony2. What I want to do: I need a modified behaviour of the regular UsernamePasswordForm based authentication. The only modification ...
0
votes
1answer
151 views

Symfony2 custom authentication : user logged but not authenticated

I've been working on a custom authentication system with Symfony 2.1. After a lot of battle with Symfony I've got something that working but not fully... Problem : After the login (through a form), ...
2
votes
0answers
132 views

Symfony 2 custom authentication provider user id is 0 (zero)

I have written my own Symfony 2 authentication provider for HybridAuth 2 library, and the authentication process works just fine, but after the user is authenticated successfuly, the page refreshes ...
0
votes
1answer
103 views

System profiler get me user logged in but not authenticated

I thought I was finally able to properly manage the login with Symfony 2. But when I get redirected to another page after login, the System Profiler gives me back that the user is logged in but not ...
0
votes
0answers
35 views

Symfony2 log in as another user, when already logged in

I am using the following code to log in as a user, when I am not logged in at all; $token = new UsernamePasswordToken($user, $user->getPassword(), 'main', $user->getRoles()); ...
1
vote
0answers
76 views

Cannot simulate authentication in Symfony functional test

I followed the instructions in the cookbook to simulate HTTP authentication inside my functional tests. I added the following to my config_test.yml: security: firewalls: main: ...
0
votes
0answers
83 views

Authentication fails for modified user object in Symfony2

In my app I am using the FOS user bundle, and the Fr3d ldap bundle. After each successful login, a listener method is fired. This listener launches a service which asks Active Directory for additional ...
6
votes
1answer
242 views

Symfony2 entity user provider overrides custom auth provider

My Symfony2 custom authentication provider now appears to be working. User Provider I almost used the FOSUserBundle but I don't even have email addresses for my users and I don't need the added ...
0
votes
2answers
132 views

Symfony2 won't load custom authentication provider, loads DaoAuthenticationProvider

This is a continuation of my last question. Hi, I'm implementing, in a Symfony2 application, a custom authentication provider in order to authenticate against the Wordnik REST API. On application ...
2
votes
1answer
72 views

Custom Authentication which doesn't need UserProvider

I looked for a solution on the web for my configuration but I can't find something which satisfies my needs. So far, I have been working on this for 3 full days, and I can't make it works properly, I ...
0
votes
1answer
131 views

Symfony2 - Tests with FOSUserBundle

i would write a test for Symfony2 with FOSUserBundle. At the moment i tried some ways and no one works. I need a function like "createAuthClient". Here is my basic class. I post it because you ...
0
votes
0answers
192 views

Symfony2 Basic Authentication. Token not set

Good morning everyone. I am playing with Symfony2 for a little and I have implemented the Basic Authentication that the documentation says. I can log in but in the debug bar it is said "You are not ...
3
votes
1answer
136 views

How to modify current user's attributes and persist them through the entire session

I'm authenticating my users using IMAG/Ldap-Bundle (BorisMorel/LdapBundle) and I can't persist any changes made to my User to my LDAP server. But whenever a user logs in, I need to check some stuff ...
1
vote
3answers
222 views

Load a listener before the security or custom provider

I'm working on a custom provider that works exactly like a classical user form, however I have to give a second parameter to identify the user: a websiteId (I'm creating a dynamic website plateform). ...
0
votes
1answer
100 views

Symfony2 Authentication - Authenticate a user from database

The Symfony2 Security documentation is pretty complex and not well documented. I have a question regarding how to Authenticate a user from database. There is no good example as to how to ...
0
votes
2answers
295 views

Overriding the FOS UserBundle in Symfony2 (also using Fr3d ldap bundle)

Because I would like to override the templates of the FOS UserBundle in Symfony2, I am trying to adapt my custom UserBundle. I made templates (and followed the exact same structure as the FOS bundle) ...
0
votes
1answer
61 views

Authorization library on Symfony HttpFoundation Component

Can anyone knows a library to authenticate users using Symfony HttpFondation Component? PS Symfony Security Component is not suitable, as too big. PPS Project does not using Symfony Framework.
0
votes
0answers
109 views

multiple firewall listener in symfony2

I don't now if it is a good idea to solve my problem but I would like to do the following: req1----|-------|------------------------------------|------> | | ...
1
vote
0answers
220 views

'Bad credentials' with Symfony2 authentication custom provider

I have a project with simple authentication by mysql database with username and password. I have simple form for authentication with 3 fields: pass, user and yubico key. I want to have two variants of ...
0
votes
1answer
242 views

How to use Route Parameter on login_path / login_check with Symfony Security

I have a project using Silex, and I'm really brand new guy with this symfony framework. Silex comes with security plugin, that I believe its the same as symfony libs. So then the problem is I need to ...
3
votes
1answer
308 views

app.user.username in twig returns unable to add global

as per the documentation: http://symfony.com/doc/current/book/security.html#retrieving-the-user-object I am trying to use twig to check to see if the user is authenticated when i put in my twig ...
1
vote
3answers
190 views

Symfony2 authentication/login using email instead of username

I've been trying to create a login form today using Symfony2 where a user can login using their email address and password. I've had lot's of problems and in the end realised it will only work if I ...
2
votes
1answer
101 views

Problems configuring user authentication by external API on Symfony2

I have a problem authenticating users for my new Symfony2 application. This applications gets all the info through an API, so no database is used. When a user goes to login page, he introduce the ...
0
votes
2answers
152 views

Symfony2 login authentication

I'm trying to restrict users from going to anything within /admin/ and if they attempt to then they will be redirected to /login. At the moment I can get to the login page which is using a ...
0
votes
1answer
46 views

User Entity Accessing Global Variable

I am very new at Symfony2, so please bear with me. I am working on creating a web application where there will be two websites/parent bundles sharing a common bundle. Part of the bundle is my User ...
1
vote
0answers
73 views

User authentication timing out before expiry config in symfony 1.4

I've got the user authentication timeout set beyond the default 30 mins but I'm still finding that the user is being timedout. This is creating issues with csrf protected forms. factories.yml ...
0
votes
1answer
103 views

Symfony Extend Authentication Timeout on Request

My thinking was that Symfony2 would extend the ExpireAt on each page request made during the authenticated session. So if the timeout was 100 seconds and you made a page request, the new ExpireAt ...
1
vote
1answer
60 views

Authenticate users from links only clicked from email

I have a web application built using Symfony2, in which some items are shared with other users. When an item is shared, the user receives a link to that item. I want that the user, receiving the link, ...
0
votes
1answer
281 views

Symfony2 FosUser : CSRF token issue

I use the authentification system provided by FOSUser bundle Everything was doing fine but recently when clicking on : <form action="{{ path('fos_user_registration_register') }}" ...
0
votes
1answer
85 views

Symfony 2 complex security provider

I've been hanging around with Symfony 2 for a while, and I have a question on making a custom complex security system. I need to make a seciruty system that is based on Module and Action basis, ...
2
votes
1answer
252 views

Symfony2 in_memory users provider issue

I have a Symfony2 application that loads users from in_memory_ user provider. The security.yml is the following: security: encoders: Symfony\Component\Security\Core\User\User: plaintext ...
-1
votes
1answer
127 views

symfony2 login not working FOSUSerBundle

Help! I don't know why, but recently I can no longer log into my Symfony2 website. When I try to login, I simply get redirected back to the login page with no error, and no indication of what is ...
1
vote
0answers
171 views

Authenticate multiple symfony2 firewalls

I'm trying to authenticate users from in_memory provider for one section on the site and sso provider for all the other pages, so I tried the following: role_hierarchy: ROLE_ADMIN: ...
1
vote
0answers
74 views

Migrating old myUser.class.php / sfBasicSecurityUser to Symfony2?

I've written several Symfony 1.x projects that use a custom app/frontend/myUser.class.php (which extends sfBasicSecurityUser) to verify the login against a legacy user database. Now I'd like to start ...
0
votes
2answers
187 views

Symfony2 set user role on login

I want to use a single form to login normal users and admins, i have a flag on entity 'isAdmin'. If it's an admin redirect to panel and set ROLE_ADMIN, if not redirect to site and set ROLE_USER. this ...
0
votes
0answers
87 views

Symfony 2.0.4 Class __PHP_Incomplete_Class exception in ContextListener.php

I'm trying to create a custom authentication system for Symfony 2.0.4 and I extend the AbstractToken class in two different projects. If I am logged into one of the applications the other will return ...

1 2 3