×
Search results provided by Azure Search - read how I built it in this post.

FAST for SharePoint

Max Melcher

2 minute read

The Cumulative Update August 2012 for FAST Search Server for SharePoint 2010 is out for a while now – seems like nobody has tried this one yet. Or quality control has happened… Updating FAST Search When you install a service pack or a cumulative update for FAST you have to run the setup and then you have to start a FAST powershell and start “psconfig –action p” – otherwise your search won’t work because SAM Worker process is dead.

Max Melcher

2 minute read

Recently I read a blog post how to customize the core result webpart - thats the webpart showing the results after you do a search with SharePoint 2010. The the output was modified so that you can click on a link to open the library/folder containing the document you searched - quite handy in my eyes. SharePoint Search The solution for SharePoint search is quite easy, just add <xsl:if test="isdocument = 'True'"> <a> <xsl:attribute name="href"> <xsl:value-of select="sitename"/> </xsl:attribute> View Folder </a> </xsl:if> and you are good to go (more details in the mentioned blog post).