Questions tagged [fr3dldapbundle]

FR3DLdapBundle is a Symfony2 bundle that provides authentication support against Ldap Directories.

FR3DLdapBundle is a Symfony2 bundle that provides authentication support against Ldap Directories.

The code can be obtained from: https://github.com/Maks3w/FR3DLdapBundle

35 questions
1
vote
2 answers

Symfony2 FR3DLdapBundle and FOSUserBundle insert in database

I joined the identifiaction LDAP fos. The identification works well but fosuser add my user in the database. I wish I disable the insert in the database. Also, if I try to reconnect, it tries to reintegrate the user. How to disable…
Yann
  • 11
  • 3
1
vote
1 answer

FR3DLdapBundle - Binding requires username in DN form

I'm using FR3DLdapBundle with FOSUserBundle. Symfony 2.5.6 FOSUserBundle ~2.0@dev FR3DLdapBundle ~2.0@dev $ldapManager = $this->get('fr3d_ldap.ldap_manager'); print_r($ldapManager->findUserByUsername('nhoang@ldap.example.com')); But I catch one…
1
vote
1 answer

Why won't FR3DLdap work?

I'm running symfony 2.2 and trying to install FR3DLdap (2.0.x-dev, but tried others) as per the documentation. Upon clearing the cache I get a 'Unrecognized options "client" under "fr3d_ldap". My config.yml: (indentation is right; Didn't know how to…
Roy
  • 49
  • 8
1
vote
1 answer

fr3d LdapBundle - preventing login

I am using LDAP to authenticate my users (with fallback to FOS User Bundle). Everything works fine, I can log in. This has, however created a "new" problem. I wish to control who can log into the application using FOS, but control their password…
mogoman
  • 2,286
  • 24
  • 28
1
vote
1 answer

Disconnect Fr3d LDAP bundle from FOS User Bundle

I am trying to use Fr3d LDAP bundle with Symfony2 to authenticate users before entering my site. Unfortunately, I am unable to modify the schema to form the necessary user table required by FOS User Bundle. This leads me to trying to bypass the FOS…
rjhilgefort
  • 453
  • 4
  • 12
1
vote
1 answer

how to disable insert data into DB (FR3DLdapBundle)?

FR3DLdapBundle will insert data into DB, if ldap authentication successes, but no data in DB exists. How can i disable it? I have already an user table with many usernames and roles, and i don't want to insert more data into it throw…
Sifeng
  • 713
  • 9
  • 23
1
vote
1 answer

FR3DLdapBundle configs errors

I'm using fr3dLdapBundle with fosUserBundle. Symfony - version=v2.0.9 fosUserBundle - version=1.2.0 I have done everything as typed in the installation documents. But I catch one error. ErrorException: Notice: Undefined offset: 0 in…
user1581663
1
vote
1 answer

FOS BUNDLE throws error with Fr3d Bundle

I have used FOS USER BUNDLE along with Fr3d LDAP bundle. When I try to login, I'm getting the error Unrecognized field: usernameCanonical I need your help
Pradhaban
  • 664
  • 2
  • 6
  • 22
0
votes
1 answer

How programmatically login with fr3d_ldapbundle

I am using symfony 3.3 with fos_userbundle and fr3d_ldapbundle to authentichate my users trough LDAP. The login works correctly if a try to use the standard login form generated. But what I need to do is a manual(programmatically) login. What is the…
Jon Doe
  • 389
  • 1
  • 3
  • 10
0
votes
1 answer

Symfony2, FosUserBundle, Oauth, FR3DLdapBundle

I'm haveing app in Symfony. Users login there using FOS with Oauth. Now i need to add option to login using active directory. So i have installed this bundle: https://github.com/Maks3w/FR3DLdapBundle but still cannot configure it to work. Im…
BigBazooka007
  • 107
  • 12
0
votes
1 answer

Symfony FR3DLdapBundle configuration and service

I am writing a Test app in Symfony3 and I am trying to set up LDAP user authentication on top of my FOSUserBundle I have found this Symfony ldap Bundle: FR3DLdapBundle I followed the documentation and 'I think I set it up correctly'. Once I have…
John
  • 1,595
  • 4
  • 21
  • 44
0
votes
1 answer

FR3DLdapBundle Authenticating against Active Directory doesn't find by "sAMAccountName"

I've install FR3LdapBundle & FOSUserBundle with Symfony3 successfully as per my blog, and I'm able to authenticate against this test LDAP server; but now I'm trying to authenticate against our internal MS Active Directory Server. Here is the change…
Alvin Bunk
  • 7,621
  • 3
  • 29
  • 45
0
votes
2 answers

Symfony2 FOSUSER with LDAP FR3DLdapBundle

I'm trying to use LDAP connection to auth my users, while keeping the FOSUser to manage them, i'm using this tutorial exactly http://blog.henriet.eu/authentification-ldap-avec-symfony-2.1-et-fosuserbundle.html got the current configuration…
Noize
  • 157
  • 3
  • 18
0
votes
1 answer

Authenticated LDAP password not being stored in fos_user database

I have a Symfony project with FOSUserBundle and FR3DLdapBundle registered and configured, but when I authenticate against a test LDAP server, the authetication works, but when I look at the dev.log the Doctrine insert statement does not have a…
Alvin Bunk
  • 7,621
  • 3
  • 29
  • 45
0
votes
2 answers

FR3DLdapBundle Login with email

I'm new on LDAP concept and i have to make a integration with LDAP and FosUserBundle. I've installed both bundles, fosuser and FR3DLdapBundle, fosuser is working but i'm missing something about LDAP login. I need to login with email. I have the…