About the author

Vijay Kodali
E-mail me Send mail

Recent comments

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2024

SharePoint repeatedly prompts for login credentials

Symptoms:

After you enter credentials on SharePoint site login prompt, you will be thrown the login prompt repeatedly despite providing the right credentials.

Cause:

This issue occurs with default security settings of IE7 in windows server environment. The settings include a loopback check security feature that is designed to help prevent reflection attacks on your computer. Therefore, authentication fails.

It can also happen for users that are behind a secured network and browser settings are controlled by administrator.

Solution:

To work-around this problem, users need to turn off Integrated Windows Authentication in Internet Explorer.

  1. In Internet Explorer, click on the Tools button, then choose Internet Options
  2. Click on the advanced tab
  3. Clear the Enable Integrated Windows Authentication option (In Security section) and Click “OK”
  4. Close and restart Internet Explorer.

If the problem persists, you may need to manually add the team Web site to the list of trusted intranet sites. To do this, complete the following steps:

  1. On the Internet Explorer toolbar, click Tools, and then click Internet Options.
  2. In the Internet Options dialog box, click the Security tab, and then select Local intranet.
  3. Click Sites, and then click Advanced.
  4. Type the URL of the team Web site in the Add this Web site to the zone box, click Add, and then click OK.

Posted by vijay on Friday, August 27, 2010 10:01 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Disabled button not grayed out in Firefox and Chrome

When button is disabled, it’s not-clickable in all browsers. However in Firefox and Chrome, the button looks enabled, though the user cannot click it.

Reason:

From W3Scholl, "Enabled" Property isn't standard property of XHTML 4.

Solution:

You can modify the way they look with CSS

button[disabled] { 
 color:Grey;
/* Add other  styles here for disable button */ 
} 

Posted by vijay on Thursday, August 12, 2010 9:08 PM
Permalink | Comments (3) | Post RSSRSS comment feed