Posts Tagged ‘search’

Sharepoint 2007: Adobe PDF support

Monday, December 14th, 2009

Adobe PDF file format is by default not available on a Windows Server 2003 or a SharePoint 2007 (MOSS) installation. Most organizations today use PDF files and it would be helpful for their users to have PDF files stored in the full text search index. To get this working install the Adobe Reader from Adobe website.

I installed the latest version of Adobe Reader 9.2 today and followed the instructions I found on the following links:

Searching with some keyword of the PDF files the result returned nothing. PDF files were not index.

Reviewed the Crawl log and found failing messages for PDF files:

Crawled (The filtering process could not process this item. This might be because you do not have the latest file filter for this type of item. Install the corresponding filter and retry your crawl. )

I also tried to add the path system variable to the Adobe Reader installation folder and did another full index but this did not help.

The solution for the problem was changing two registry entries:

  • Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\12.0\Search\Setup\ContentIndexCommon\Filters\Extension\.pdf and change Default Reg_Multi_SZ value to
  • {E8978DA6-047F-4E3D-9C78-CDBE46041603}

  • Go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\12.0\Search\Setup\ContentIndexCommon\Filters\Extension\.pdf and change Default Reg_Multi_SZ value to
  • {E8978DA6-047F-4E3D-9C78-CDBE46041603}

    After these registry entries have been modified run iisreset; “net stop osearch” and “net start osearch”. Re-run the full index crawler on your content.

    image

Thanks to the community I got the PDF icon and the PDF search working on the Sharepoint 2007 platform!

Internet Explorer 7 Search Providers howto and my favorite ones

Saturday, April 5th, 2008

Couple times I tried to get my IE Search box customized with my own search providers. I read the AddSearchProvider Method from MSDN website and than created couple of my favorite website to have them in my search box available.

One of my XML files I created for Networknet.nl Search Provider. Create your own xml file and store it on your webserver; create new button to add the Search Provider you specified in the XML file e.g. .

<?xml version=”1.0″ encoding=”UTF-8″ ?>
<OpenSearchDescription xmlns=”http://a9.com/-/spec/opensearch/1.1/”>
    <ShortName>Networknet.nl</ShortName>
    <Description>Networknet.nl Blog Search</Description>
    <Url type=”text/html” template=”http://www.networknet.nl/apps/wp/?s={searchTerms}&rls=com.microsoft:{language}&ie={inputEncoding}&oe={outputEncoding}&startIndex={startIndex?}&startPage={startPage}” />
</OpenSearchDescription>

<INPUT TYPE=”button” VALUE=”Del.Icio.Us by word” onClick=’window.external.AddSearchProvider(“http://www.networknet.nl/apps/content/searchproviders/del-icio-us.xml”);’>

Basically try to find the search string for the website your are trying to query and add the {searchTerms} in the XML file.

Search Provider Click to add to your IE configuration
Networknet.nl Search Provider
image
image
image
image

The result. In IE CRTL-E and type the word you are looking for and change the search provider.

image