- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi,
I am authenticating a web application using LDAP. I am using a .htaccess to perform this task. I am pasting the htaccess file content here:
<-----
AuthName "CEC"
AuthType Basic
LDAP_Server ldap.mycompany.com
LDAP_Port 389
Base_DN "ou=active,ou=employees,ou
UID_Attr uid
require valid-user
----->
I want to give access to a new user who is not in LDAP. At the same the LDAP users should be able to use this. This means, in addition to the existing set of LDAP users I want to add a new dummy user. I also want to provide a dummy password for the new user. How can i do this? Please help me.
This is an urgent requirement.
Thanks in advance,
Navanee
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: grexxPosted on 2005-02-23 at 07:52:29ID: 13383469
You probably know about .htpasswd and .htgroup files, to create a group with users that can get access to a directory.
om/howto/h taccess3.s html (users only) or orums/show thread.php ? p=1673056 #post16730 56 (with groups)
See http://www.javascriptkit.c
http://www.sitepoint.com/f
or search google.
I'm not sure, because I don't use LDAP, but you might try to add a .passwd file with user:password in it (see the tutorial). Then you probably can add the username to your "require valid-user" line, seperated by comma or space, that you should find out.
This is just a guess, but it's maybe worth to try.