Strange Behaviour when opening pdf files using search results

Hi
I have observed inconsistencies between opening a pdf file when in the document library itself (it opens in a browser - good).
However, when I click on a the same file in my search results having used Search and the Search Centre it opens in the adobe reader.  I would rather it opened in a browser rather than the adobe reader.
The only difference I can see is that when opening from a document library the url ends in ".pdf", whereas when opening from the search results the url ends in ".pdf#search=<search string>.
Anybody any ideas ?
Regards
Nigel
Nigel Price NJPEnterprises

Hi Nigel,
According to your description, my understanding is that you want to open pdf from search result in browser.
Firstly , permissive Browser File Handing in Central Administration, you can refer to the link:
http://social.technet.microsoft.com/wiki/contents/articles/18858.sharepoint-2013-how-to-view-pdf-files-in-browsers.aspx
Whether you are using OWA for SharePoint 2013. If Office Web Apps is not used for Search results of PDFs, the opening of PDFs in the browser passes the search terms into Adobe. So, if you don’t use OWA, please configure it for SharePoint 2013.
More information, please refer to:
http://stevemannspath.blogspot.com/2013/04/sharepoint-2013-pdf-support-and.html
I hope this helps.
Thanks,
Wendy
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Wendy Li
TechNet Community Support

Similar Messages

  • Unable to open pdf files from search results page in Office 365 site

    Hi folks,
    I am getting this issue since a while now. In office 365 site, if I click on links that points to pdf files in search results page, I get this -
    “The filename, directory name, or volume label syntax is incorrect”. 
    These pdf files are stored in the same site and I am able to open them in adobe reader directly from the document library but not from the search results page.
    I have already gone this post and doesn't help me -
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/545efcc6-b748-4df8-aee0-7f57f778ad1e/sharepoint-2010-opening-pdfs-in-search-results-the-filename-directory-name-or-volume-label?forum=sharepointgeneralprevious
    Any help or pointer is much appreciated.
    Thanks,
    Manvir
    Manvir

    Hi,
    Besides pamma has suggested, here are similar issues, you can take a look at:
    http://unsolicitedbutoffered.blogspot.com/2014/01/quick-fix-volume-syntax-error-when.html
    http://crowdsupport.telstra.com.au/t5/T-Suite-Applications/There-was-an-error-opening-this-document-The-filename-directory/td-p/197425
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

  • Error opening PDF files from search results webpart on anonymous SharePoint 2013SP1 site with IE

    Clicking search results, in the strict sense pdf files, using IE on an anonymous SharePint 2013SP1 site, I received the error: There was an error opening this document. The filename, directory name, or volume label syntax is incorrect.
    I would like to solve this problem on the server side.
    Starting position:
    SharePoint 2013 SP1
    Web Application:
    based on template 'Publishing Portal'
    Anonymous Access enabled
    Claims based authentication: Integrated Windows Authentication NTLM
    Client Integration disabled
    Site Collection:
    Anonymous Access enabled for 'Entire Web site' => group 'Anonymous Users' was created
    added permission to open items: $Web.AnonymousPermMask64 = "ViewListItems, ViewVersions, ViewFormPages, Open, ViewPages, UseClientIntegration, OpenItems"
    Client side solutions:
    c1) Open Link with “Open in new tab” or “Open in new window” => OK
    c2) Disable IE Add-on “Adobe Acrobat Sharepoint OpenDocuments Component” => OK
    c3) Set bDisableSharePointFeatures to 1 in regetit => OK
    Server side solutions:
    S1) Turn off Client Integration => didn't work, still same error
    S2) Modify DOCICON.XML => didn't work, still same error
    I gave these two options a chance:
    first: <Mapping Key="pdf" Value="icpdf.png" OpenControl="SharePoint.OpenDocuments"/>
    then: <Mapping Key="pdf" Value="icpdf.png" OpenControl="AdobeAcrobat.OpenDocuments"/>
    I modified DOCICON.XML on both hives 14 and 15.
    Remarks:
    - After changingparameters I allways did an IISreset.
    - As far as I understood I can only change bDisableSharePointFeatures on Client Side.
    Any help, suggestion, idea wellcome!
    Thanks!

    Hi folks, here's the reason for my problem. I used the oob search result web part. The result items (PDF items) are rendered by the template Item_PDF.html/Item_PDF.js. This template holds a code snippet that assigns a certain OpenControl to the PDF item - that's hard coded. So, no matter what you configure in DOCICON.XML, the PDF item will be opened with the control "PdfFile.OpenDocuments". Solution is e.g. just to leave the OpenControl blank.   
    template:
    /_catalogs/masterpage/Display Templates/Search/Item_PDF.html
    /_catalogs/masterpage/Display Templates/Search/Item_PDF.js
    code before:
    ctx.CurrentItem.csr_OpenControl = "PdfFile.OpenDocuments";
    code after:
    ctx.CurrentItem.csr_OpenControl = "";
    Enjoy
    Harry

  • When open pdf file using Adobe Reader 11.0.09 Show message "Adobe Reader has Stopped working".Why?

    Need suggestion to solve this problem..tq

    Hi ra az,
    Which OS are you using?
    Try installing the latest update v11.0.10 and check.
    Have you tried repairing Reader from the 'Help' menu already?
    Also try disabling the protected mode in Reader and launch and check.
    Regards,
    Rave

  • Open pdf file using ms access visual basic 2000 (9.0.2720)

    I'm using Acrobat reader to open pdf file using a vb proceedure , how ever I can't get it to open a specific file thats in another file folder.
    The code I'm using looks like the following: This is windows 7, using the (x86) virtual in 32 bit mode.
    Private Sub Form_Click()
    'checks for valid msds document
    Dim fs As FileSearch
    Dim stAppName As String
    Dim i As Integer
    On Error GoTo Err_form_Click
    Set fs = Application.FileSearch
    With fs
                 .NewSearch
                .LookIn = "c:\program files (x86)\cvmm\msds\"
                .FileName = Me![MSDS Index #] & ".pdf"
                .MatchTextExactly = True
    If .Execute() <> 0 Then
                        stAppName = "C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe c:\program files(x86)\cvmm\msds\" & Me![MSDS Index #] & ".pdf"
                          Call Shell(stAppName, 1)
               End If
                     End With
    exit sub
    Err_form_Click:
        MsgBox Err.Description
             Resume Exit_form_Click
    Exit_form_Click:
            MsgBox " no file found."
    End Sub
    This used to work when I was using acrobat 5.0,

    You should have quotes around a filename that has spaces in it. Older versions were more forgiving for some reason.
    Much better anyway is to use ShellExecute, which means you don't have to know or care what PDF reading software is installed and how to run it.

  • When open pdf file , always open the comment window.

    Hello
    When open pdf file , always open comment window. I close comment window and exit the adobe reader, but re run the pdf file, always open comment popup window.
    It is very inconvenience, interrupt my seesight.
    How can I not open comment window when I run the pdf file?
    help me please.

    I use Windows 7 Professional K, Reader version is Adobe reader DC 2015.007.20033.

  • When opening pdf file I cannot choose between opening or downloading the file?

    Adobe offers just the download. How to change this?

    Hi, thanks for your reply. I use Mozzilla firefox the 15.01 version. How do I change the settings then?
    Martin
    Date: Fri, 21 Sep 2012 22:27:42 -0600
    From: [email protected]
    To: [email protected]
    Subject: When opening pdf file I cannot choose between opening or downloading the file?
        Re: When opening pdf file I cannot choose between opening or downloading the file?
        created by Pat Willener in Adobe Reader - View the full discussion
    That choice is not made by Adobe, but your browser, of which you give no details. 64-bit browsers cannot open PDF files, as the Adobe Reader plugin is a 32-bit app.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4718369#4718369
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4718369#4718369
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4718369#4718369. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Adobe Reader 8.1.2 (admplugin.apl) crash when opening PDF files

    Hi,
    I did spend some time today trying to get Adobe Reader 8.1.2 to run on a Citrix Access Essential 2.0 server.
    Setup
    Server OS:
    Windows Server 2003 SP2 - fully patched.
    Other software:
    Office 2003 Standard, Danish, SP3
    Symantec Antivirus 10.1
    Adobe Reader 8.1.2, Danish
    The installation is clean (1 week old).
    Problem description:
    When opening PDF files, Adobe Reader crashes before showing any content from the PDF file. The module crashing is admplugin.apl.
    Work-arounds tried:
    Uninstalling and reinstalling Adobe Reader 8.1.2 (DK).
    Disabling Antivirus (service stopped)
    Replacing admplugin.apl with admplugin.apl from Adobe Reader 8.0
    Uninstalling DK version and installing US version.
    Adding user to local Administrators to exclude any permission related problems.
    Deleting Adobe folders from users profile Application Data\Adobe\... and Local Settings\Application Data\Adobe\...
    Turn DEP off
    Solution:
    Finally I gave up and installed 7.0.9 (Danish). It works as expected.
    It seems that the problem is known and a few user has reported this. One Adobe KB article mentions the problem, and the solution is to disable some 3. party diagnostic/support tools provided by DSL providers. This is definitively not the issue in this installation.
    Anybody from Adobe having any input to this problem?
    Best regards from Denmark!

    Hi,
    I am having a similar issue with Ver 8.1.2 running over cirtix with a similar setup to Jans-Peter.
    The difference is that Reader opens fine but when you try to edit preferences it crashes.
    This only happens on an citrix session. If I run reader on the server directly it works OK.
    However after reading above I can replicate the problem on the server by moving or deleting the ADMPlugin.apl file.
    Any further ideas at all?
    Mark

  • Setting preferences when opening pdf files in Safari

    Safari opens pdf files using Preview in Safari, which is fine. However, I would like the pdf files to be auto sized to the window, and displayed with continuous mode off. These are my preferences if I use the Preview program. Instead, pdf files are always opened in continuous mode, and not autosized.
    I can't seem to find a way to change the default settings for displaying pdf files in Safari. Any help?
    iMac G4 1 GHz   Mac OS X (10.4.8)  

    I'm tired of having to do this for every pdf file I open in Safari.
    I understand. Preview via Safari is new in OS X Tiger. Apple has a history of building improvements/new features with each rendition of OS X.
    You may want to express your concerns and needs to Apple via their feedback page before the release of Leopard this coming spring.
    iMac G5 Rev C 20" 2.5gb RAM 250 gb HD/iBook G4 1.33 ghz 1.5gb RAM 40 gb HD   Mac OS X (10.4.8)   LaCie 160gb d2 HD Canon i960 printer, Airport Express (2 units)

  • Mountain Lion freezes when opening pdf file on preview

    Mountain Lion freezes when opening pdf file on preview. I have to power down my Mac

    Mountain Lion freezes when opening pdf file on preview. I have to power down my Mac

  • "The exception unknown software exception (0xc06d007e) occured in the application at location 0x7c812aeb" - error displayed when opening PDF files. What i do?

    "The exception unknown software exception (0xc06d007e) occured in the application at location 0x7c812aeb" - error displayed when opening PDF files. What i do?

    What is your Reader XI version?
    Have you tried to disable Protected Mode [Edit | Preferences | Security (Enhanced)] ?

  • How do I force safari to open pdf files using Adobe???

    How do I force safari to open pdf files using Adobe and not in the browser?

    You need Acrobat Reader as a Safari plug in.
    http://get.adobe.com/reader/

  • Open pdf files using AutoVue

    I need to open pdf files using AutoVue in .Net Desktop application(Windows Form ). Is it possible?
    If it is possible please help me to.
    Thanks
    Bimal

    Out of the box no
    Doing it requires a good knowledge of .Net and JAVA (specifically JNI) in order to build a JAVA wrapper for .Net
    I would recommend to google on how you can interact with a java applet inside an IEFRame that is sitting inside a .Net application
    Java.NET : Integration of Java and .NET - CodeProject
    But your are on your own there

  • RH11 404 - Page Not Found when linking to PDF file from search results using IE9 and IE10

    I'm using RH11 (11.0.3.268) and I've included a number of PDF files as baggage files. The hyperlinks on the pages work fine and display the PDF files in a separate window, as expected. However, when searching for these same PDF files using the Search tab, I'm getting a 404 error with the filename. The description on the error shows the filename and says the "the requested resource is not available." This is occurring using IE9 and IE10. And, it only happens within the application, which packages the WebHelp with a war file.
    I searched the forum and found where someone was having the same problem on Firefox, but was fine on IE. But, as mentioned, I'm finding it on IE.
    Thoughts on how to fix this error?

    Is the WAR file extracted at the point when the search is done? If not, I would expect it to fail.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Error when opening PDF files from SAP.

    Hi Gurus
    I have posted this question in ABAP Development section also. Please read the below text.
    We are having a strange intermittent problem with Adobe Reader. When we try to open PDF files from SAP Frontend we get an error pop-up. The pop-up does not have any text. The title of the pop-up has "Adobe Reader". There is a blue question mark and an OK button.
    This issue occurs few times a day in Windows Vista.
    This issue does not occur in Windows XP.
    Since past few weeks, we have been trying to find some error/warning/atleast some text in log files of SAP, OS, Adobe Reader, Registry entries, Event Viewer. So far, we have not found anything.
    SAP is not able to help as this issue occurs intermittently and said when they tried, the issue did not occur. They made two attempts and in each attempt they tried 10 times to reproduce the issue. This issue occurs intermittently.
    Environment
    SAP R/3 4.7 EE SAP_Basis 620 Support Package 61
    Windows Vista Enterprise
    Adobe Reader 9.0 and Adobe Reader 9.1 (tried with both versions)
    SAPGUI 710 Patch 12 (latest patch). It also occured in Patch 11.
    Please suggest
    Thank you
    Pavan

    Now I got to capture the screenshot, however not able to attach/upload here but it says:
    'Reading Untagged Documents'
    lets say i tried to open 6 page document then it said:
    'This 6-page document is untagged and must be prepared for reading. While the document is being
    analyzed, your assistive technology will not be able to interact with this application. '
    then it asked for Reading options
    then a checkbox for to confirm 'Always use the settings from the Reading Preferences (Do not show this dialog again)
    then 'OK/START' and 'cancel' buttons
    It seems, this is the problem with Adobe w.r.t Vista.
    thanks
    Bhudev

Maybe you are looking for

  • Pages Failing to load

    Recently I have had increasing trouble with web pages failing to load. It can be quite irratic. Tonight, for example, Apple's main page at www.apple.com itself will sometimes load quickly and sometimes get to "completed 34 out of 35 items" then just

  • How to integrate Oracle BI Publisher via Web Services in Oracle Forms.

    hi I hope you fine and happy. I think you hear about the new reporting tool (Oracle BI Publisher). Really it is a great tool. I need someone help me; How I can integrate Oracle BI Publisher via Web Services in Oracle Forms. I got the guidelines of th

  • Matching Route Patterns with standard Local Route group and Specific Route Group

    Hi I have a customer with CUCM 8.6 with few branches couple of branches in UK and few in Europe and middle east. I configured route patterns with Standard local route group, but using their own Voice gateway, everything was working fine until adding

  • How do i put the songs off one computer onto another

    how do i put the songs off one computer onto another

  • Microphone not working with Analog headset

    Hello! I have run into a problem getting a headset to work on Skype for Desktop v. 7.4. I have tried as much troubleshooting as I can but I still cannot get it to work. Right now, I have the microphone jack connected to the pink port and the headphon