On Fri, 19 Mar 2004 [EMAIL PROTECTED] wrote: > If I enable any authentication ( SMb_auth, squid_ldap_auth , ntlm_auth ) > takes too long to display the pages. Even already visited sites also takes > too long to display. If I disable authentication, the performence is back > to normal.
Are you using NTLM or Basic authentication scheme? Try just configuring the Basic scheme and use the following dummy helper: #!/bin/sh while read request; do echo OK done If this works then your problem is in the communication between the helper and your backend user database. Regards Henrik
