how to configure Firefox to automatically reuse the login credentials like IE

5

2

Multiple HTTP Authentication Prompts in Firefox We are currently working on porting our application from Internet Explorer to Firefox and the application currently uses HTTP Digest Authentication. In case of Internet Explorer, the popup dialog to enter the Username/password appears only once and the entered login credentials are reused for subsequent HTTP requests to the web server. However in case of Firefox, the Authentication popups appears whenever the request is made to the Web Server. The Web Server used is Emweb Server.

We would like to know how to configure Firefox to automatically reuse the login credentials like IE.

Black Eagle

Posted 2010-05-31T12:25:20.123

Reputation: 151

Shouldn't the popup have a checkbox to remember the password? Does it keep prompting for it even if you check that? – Matti Virkkunen – 2010-05-31T12:28:11.637

The default configuration of Firefox should do that (remember your authentication) within the same "session" (whether you ask it to remember the password for later or not). I'd recommend installing Firebug and snooping on the traffic (particularly the Authorization header) to see if there's some issue with the authentication, such as setting a really short timeout or some such. – T.J. Crowder – 2010-05-31T13:19:10.457

Answers

5

You need to enable NTLM Configuration within FireFox. It is very simple to do and should solve your problem:

  1. Open Firefox and type “about:config” in the address bar. (without the quotes of course)
  2. In the ‘Filter’ field type the following “network.automatic-ntlm-auth.trusted-uris”
  3. Double click the name of the preference that we just searched for
  4. Enter the URLs of the sites you wish to pass NTLM auth info to in the form of:

    http://intranet.company.com,http://email.company.lan

  5. Notice that you can use a comma separated list in this field.

Robert Williams

Posted 2010-05-31T12:25:20.123

Reputation: 202

Clumsily but works! Thanks! – abatishchev – 2011-01-24T08:20:16.097