Tag: SharePoint

  • SharePoint FBA: SSL Required

    Recent changes in Chrome to improve cookie security required flags being set on the cookies in order for them to continue to function cross-domain. Microsoft released patches to SharePoint to implement the flags – however the flags also require the cookie to be marked SECURE and now only allows the cookies to function with HTTPS/SSL.…

  • SharePoint 2016 FBA Pack Released

    The SharePoint 2016 FBA Pack has been released. It was ported from the SharePoint 2013 FBA Pack (which was originally ported from the SharePoint 2007 CKS Forms Based Authentication Solution), and includes all of the features from the SharePoint 2013 FBA Pack: User Management Role Management Membership Request Web Part Password Recovery Web Part Change Password…

  • 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…

  • Filter a SharePoint Calendar List With a Date Picker

    I was trying to add a date picker to allow the filtering of a Calendar list in SharePoint. Unfortunately I had SharePoint Foundation, which is missing the Date Filter web part which only comes with the Enterprise edition of SharePoint. I found this article, which works great for filtering a specific date.  My calendar items…

  • 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…

  • Adding Breadcrumb Navigation to SharePoint 2010 Application Pages

    The application pages in my SharePoint 2010 FBA Pack were not properly displaying the breadcrumb navigation. They didn’t include ‘Site Settings’ in the navigation – they went straight from Home to the application page. I used the following blog entry to add the breadcrumb navigation: http://weblogs.asp.net/jan/archive/2008/04/16/adding-breadcrumb-navigation-to-sharepoint-application-pages-the-easy-way.aspx Unfortunately after making the changes, I still didn’t see…

  • 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…

  • Mixed Anonymous and Secure Content with SharePoint 2010

    In this tutorial i’m going to step you through how to set up a SharePoint 2010 publishing portal with both anonymous and secure content. 1. Create a new Web Application in Central Admin. Make sure that you select ‘Yes’ for Allow Anonymous.  All other values can remain at the defaults. For this example I’m going…