i am getting ldap authentication dialog again and again (though i have provided correct login information)
for this effect i made changes in httpd.conf (placed at "/etc/httpd/conf/httpd.conf") and added lines as:
<Directory "/usr/local/apache2/cgi-bin/authenticate">
AllowOverride AuthConfig
</Directory>
in folder /usr/local/apache2/cgi-bin/authenticate, i created .htaccess and added following lines in it:
AuthType Basic
AuthName 'LDAP Login (Please do not add prefix before username)'
AuthLDAPUrl ldap://machine-ip:389/ou=people,o=
xyz.com?uid?sub?(objectClass=*)
<Files "authenticate.py">
require valid-user
</Files>
Please help
Thanks & regards