- A fix for a very slow SharePoint library Explorer view: http://www.stacydubois.com/2011/02/sharepoint-fix-slow-browsing-in-windows.html
- What ASP.NET developers should know about web.config inheritance: http://weblogs.asp.net/jgalloway/archive/2012/01/17/10-things-asp-net-developers-should-know-about-web-config-inheritance-and-overrides.aspx
Archive for January, 2012
Good Links, Jan 24, 2012
Posted in Good Links, tagged ASP.NET, SharePoint 2010 on January 24, 2012| Leave a Comment »
Caching in SharePoint
Posted in Good Links, SharePoint, tagged Caching, Performance, SharePoint 2010, Sharepoint Optimization on January 19, 2012| 1 Comment »
A very nice presentation by Shai Petel about SharePoint caching: http://kwizcom.blogspot.com/2011/10/developers-guide-how-to-enhance-your.html
Important notes about SharePoint 2010 custom role provider
Posted in SharePoint, Tips, tagged Custom role provider, SharePoint 2010 on January 12, 2012| 3 Comments »
When building a custom role provider for SharePoint 2010, make sure of the following:
- The Role Provider section must be added to the following web.configs
- Central Admin
- The Security Token Service
- The Web application
- The <RoleProvider tag in the web.config must have:
- enabled=true
- a default provider like (<roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider" )
Getting Exception “HRESULT: 0x800708C5” with ADMembershipProvider change password method
Posted in Tips, Uncategorized, tagged ActiveDirectoryMembershipProvider, ChangePassword, HRESULT: 0x800708C5 on January 5, 2012| 4 Comments »
Symptoms:
- You keep getting the exception HRESULT: 0x800708C5 with the Active directory membership provider change password indicating that the password used does not conform to the domain password policy.
- As an admin, you are able to update the user password using that same password.
Probable cause:
- The active directory policy can be set to allow a “minimum password age”, i.e. users cannot change their own password before it is at least X days (default 1). The Administrator though does not have such restrictions when trying to update a user’s password.
- This can be checked at Start->Administrative tools->Group policy Management->Navigate the tree to the domain-> default domain policy –>right click edit->computer configuration –>policies –>windows settings->security settings-> account policies->password policy->check the entry for “minimum password age”
- If you want to reset it (mainly for development/testing purposes), just change it to zero. then go to command line gpupdate /force to apply the new policy