Tag: Sharepoint 2010
-
InfoQ FBA Pack Interview
I was recently interviewed about the FBA Pack by Jonathan Allen of InfoQ. The interview is here: http://www.infoq.com/news/2014/05/SharePoint-FBA
-
SharePoint 2013 FBA Pack Released
The SharePoint 2013 FBA Pack has been released. It was ported from the SharePoint 2010 FBA Pack (which was originally ported from the SharePoint 2007 CKS Forms Based Authentication Solution), and includes all of the features from the SharePoint 2010 FBA Pack: User Management Role Management Membership Request Web Part Password Recovery Web Part Change Password…
-
Removing Null Characters (0x00) From Values in SQL Server
I recently came across a problem while crawling a BCS data source in SharePoint 2010. Most of the 130,000 records were getting indexed, but I was getting an error on 25 records: Error while crawling LOB contents. ( ‘.’, hexadecimal value 0x00, is an invalid character. Line 25, position 10. ) When I first took…
-
Bulk Delete SharePoint Site Users with PowerShell
Below is a PowerShell script for deleting a filtered list of users from a SharePoint site. Simply copy the script to a .ps1 file, adjust the $SITEURL to the url of the site and adjust the $USERNAMEFILTER to a lowercase string that is contained in all of the usernames you would like to delete. The…
-
Performance Profiling a SharePoint 2010 Project using EQATEC Profiler
I wanted to profile a SharePoint 2010 project i’d been working on, in order to find some of the slower methods so that they could be improved. I decided to give EQATEC Profiler a try since it had some good recommendations on StackOverflow and was FREE. EQATEC works by modifying and rebuilding your assemblies. Since…
-
Search Refinement Panel Web Part “Show More” Link Not Working
I recently discovered that the “Show More” link on the Search Refinement Panel web part had stopped working, seemingly out of the blue. With a bit of debugging I discovered that the functions defined in the onclick event: were returning “Object Expected”. For some reason the functions were no longer defined. I eventually figured out…