Cannot access web PDF files

I am using an iMac 27 inch mid 2010 with OS 10.9.4 and Safari 7.0.5, processor speed 2.93 GHz, Intel Core i7, 8GB 1333 Mhz DDR3.
When I try to view a PDF file on the Internet using Safari I get an error message that says "Before viewing PDF documents in this browser you must launch Adobe Reader and accept the End User License Agreement, then quit and relaunch the browser". This error message occurred when I used Safari 7.0.5 and also after updating Safari to 7.0.6. Normally, I do not have the Adobe Reader open prior to viewing a PDF file on the Internet but, just in case that was a problem, I opened Adobe Reader version 9.5.5 or 10.1.10 prior to opening either version of Safari and got the same error message. 
However, if I used Firefox 29.0.1 browser I could view the PDF files and copy them to my iMac. Also the Adobe Reader versions 9.5.5 and 10.1.10 will both open local PDF files from my iMac. Prior to updating the OS to 10.9.4 and Safari to 7.0.5 there was no problem opening PDF files over the Internet with Safari 7.0.4 and OS 10.9.3. So, from this I deduce that Adobe Reader is not the source of the problem and that there is something wrong with Safari 7.0.5 and 7.0.6.
My initial thought was to run Repair Permissions from the Disk Utility but this made no difference. Also the error message does not make sense as you have to accept the End User License Agreement when Adobe Reader is installed and there is no obvious means of accepting the License Agreement again when the Reader is launched after it has already been installed.
Can you help.

Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
Step 1
If Adobe Reader or Acrobat is installed, and the problem is just that you can't print or save PDF's displayed in Safari, you may be able to do so by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar should appear under the cursor. Click the printer or disk icon.
Step 2
There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
Step 3
If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
          Safari ▹ Preferences... ▹ Security
and check the box marked
          Allow Plug-ins
Then click
          Manage Website Settings...
and make any required changes to the security settings for the Adobe PDF plugin.
Step 4
Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
/Library/Internet Plug-ins
In the Finder, select
          Go ▹ Go to Folder
from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
Step 5
The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
Step 6
Do as in Step 4 with this line:
~/Library/Internet Plug-ins
If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

Similar Messages

  • I cannot convert my pdf files to word. I keep getting an error message that "an error occurred while trying to access the service"?

    I cannot convert my pdf files to word. I keep getting an error message that "an error occurred while trying to access the service"?

    See if anything in here helps: https://forums.adobe.com/docs/DOC-1831
    [topic moved to ExportPDF forum]

  • How to access a PDF file from Oracle DATABASE SERVER

    Hi
    I have some pdf files in "\home2\docs" directory in Oracle database server 10g. (OS is Linux) I want to access those pdf files from my client system through Oracle Forms. How is it possible?
    Please Help!!!! It is very urgent !!!
    Expecting fast response!!!!!
    Bye

    hi
    Thank u for ur response.
    Initially i tried to access pdf file from database server. I didn't get any solution for that. So I copied all my pdf files to Application server which is in Linux environment at "/home2/docs" directory.
    I gave the following command for accessing the pdf files kept in Lnux Application Server from Oracle 10g forms in a button press trigger.
    web.show_document('http://192.168.1.53:7779/home2/docs/test.pdf');
    It says "page cannot be found"
    So I copied one of the pdf file named "test.pdf" to "/oracle/oas10g/IasHome/forms90/java" in Linux Application Server . Then the following command
    web.show_document('http://192.168.1.53:7779/forms90/java/test.pdf');
    has opened the the pdf file in browser.
    192.168.1.53 is my Linux Application Server IP. and 7779 is the port.
    Actually we have lacs of pdf files. So i cannot keep all the pdf files in "/oracle/oas10g/IasHome/forms90/java" directory in Linux Application Server. And also all the pdf files not in the same directory , "/home2/docs" some of the pdf files r in the subdirectories of "/home2/docs/" like /home2/docs/sub1, /home2/docs/sub2, /home2/docs/sub3 etc.
    Then how to configure my "/oracle/oas10g/IasHome/forms90/server/forms90.conf" file for retrieving pdf files from "/home2/docs/" and its subdirectories. Is Anything other than this, required for solving my problems.
    Now My PDF files r in LINUX APPLICATION SERVER not in database server.
    Please help!! It is VERY URGENT!!!

  • Cannot access a closed file error on adding a file to a library

    I am trying to copy the attachments from a list to a document library. When I try to write into a document library, occasionally I am getting following error "The remote server returned an error: (500) Internal Server Error.  Cannot access
    a closed file.  Cannot access a closed file.  "
    Any ideas on what is causing the problem. The code is specified below, The error message is specified after the code. Can you please let me know if I am missing anything. I cant find anything wrong in the code or in the library. The code is running as WCF
    Service and the call to process this is made from Infopath form.
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    string siteURL = "Site URL";
    using (SPSite site = new SPSite(siteURL))
    SPWeb oWeb = site.OpenWeb();
    SPList oList = oWeb.Lists["List Name"];
    SPList docDestination = oWeb.Lists["Destination Library on same site"];
    SPFolder fldRoot = oWeb.Folders["Destination Library on same site"];
    SPFileCollection flColl = null;
    SPQuery oQuery = new SPQuery();
    oQuery.Query = "<Where><Eq>" + "<FieldRef Name=\"ID\"/><Value Type=\"Number\">" + RequestID + "</Value></Eq></Where>";
    SPListItemCollection oItems = oList.GetItems(oQuery);
    foreach (SPListItem lstItem in oItems)
    if (lstItem["ID"].ToString() == RequestID)
    if (lstItem.Attachments != null && lstItem.Attachments.Count > 0)
    foreach (String strName in lstItem.Attachments)
    flColl = fldRoot.Files;
    SPListItem listtem = docDestination.Items.Add();
    SPFile FileCopy = lstItem.ParentList.ParentWeb.GetFile(lstItem.Attachments.UrlPrefix + strName);
    SPQuery oQueryDest = new SPQuery();
    oQueryDest.Query = "<Where><Eq>" + "<FieldRef Name=\"Name\"/><Value Type=\"Text\">" + FileCopy.Name + "</Value></Eq></Where>";
    SPListItemCollection collListItems = docDestination.GetItems(oQuery);
    string destFile = flColl.Folder.Url + "/" + FileCopy.Name ;
    if (collListItems.Count > 0)
    String strFileNamePrfix = FileCopy.Name.Substring(0, FileCopy.Name.Length - 3);
    strFileNamePrfix = strFileNamePrfix + "_" + collListItems.Count.ToString();
    strFileNamePrfix = strFileNamePrfix + FileCopy.Name.Substring(FileCopy.Name.Length - 3,3);
    destFile = flColl.Folder.Url + "/" + strFileNamePrfix;
    byte[] fileData = FileCopy.OpenBinary();
    Trace.WriteLine("Board Services dest file" + destFile + " Count = " + collListItems.Count.ToString());
    SPFile flAdded = flColl.Add(destFile, fileData,true);
    SPListItem item = flAdded.Item;
    flAdded.Item.Update();
    catch (Exception ex)
    string strLogEntry = ex.Message.ToString() + ex.StackTrace.ToString();
    finally
    Form submission failed. (User: xxxxx, Form Name: Template, IP: , Request: http://Site Url/Lists/List name/Task/editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=116&Source=http://Site URL/Lists/List Name/AllItems.aspx?View={CB9F3C2B-49DF-4D75-9720-1E7E000FD229}&FilterField1=Status&FilterValue1=Completed&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot
    access a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    The remote server returned an error: (500) Internal Server Error.)

    Hi Dimitri,
    Thank you, I tried increasing the timeout on web.config file of the wCF service and reloaded the config file.
    <httpRuntime executionTimeout="90" maxRequestLength="20000" useFullyQualifiedRedirectUrl="false" requestLengthDiskThreshold="8192"/>
    As the error
    Form submission failed. (User: , Form Name: Template, IP: , Request: http://site /editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=102&Source=http://site List/AllItems.aspx?View={cb9f3c2b-49df-4d75-9720-1e7e000fd229}&SortField=Status&SortDir=Asc&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14#,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot access
    a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    is happening at following line
    SPFile flAdded = flColl.Add(destFile, fileData,attachmentPropertiesHashTable ,true);
    I only modified the timeout on the wcf service.
    I dont think I need to change the timeout on the Webapplication which has this site?
    Regards
    Nate

  • I downloaded Redear to see if it could open an old .pdf file.  Now I cannot open any .pdf files.

    What is wrong with Reader?  Having loaded it I now cannot open any .pdf file in my computer or on email.

    Wallabykangaroo wrote:
    I gave up loading then scouring out Adobe products each time it told me Flash Player was loaded but was nowhere to be found on my system.  I have now done what I expect is the intention in that I have downloaded the full Adobe trial pack, which they then expect me to purchase.
    Cannot get over the impression that the fault is deliberate.  Building in the requirement for all users then loading a weak link, that drives you to purchase.
    Shockwave is FREE... Flash Player is FREE.... Adobe Reader is FREE... Adobe AIR is FREE... Those four products are, and always have been, FREE... Flash Professional, which is for creating and editing Flash animation and video files, is a paid licensed product. Acrobat Professional, which is for creating and editing PDFs, is a paid licensed product. Neither Flash Player nor Adobe Reader have any links to prompt an upgrade to the professional version of software for the file format. Never have. Viewing Flash content and PDFs needs to be universally available to the public who receive such content over the Internet. Creating and editing Flash files and PDFs is not something that everyone needs, so it's only available at a cost for those who need it and choose to use Flash Pro or Acrobat.
    There are Creative suites with several Adobe applications for everything from photo and graphic editing, to video editing, to making e-readers, to web design, but those are for developers of the individual media.

  • I cannot open some pdf files online with Reader XI (like sample forms in Help section).

    I cannot open some pdf files online with Reader XI (like sample forms in Help section or IRS.gov or credit card statements).  I have uninstalled Reader XI, cleaned and reinstalled.  I have no problem right-clicking and downloading and then viewing the files.  No problem viewing acrobat files.  I'm runnnig Windows 7,  IE9.     I can acces them through Chrome.

    RESOLVED
    I found two suspect programs that were installed within the last 48-hrs that may have caused the problem
    1) - Libre Office - latest update.  This is a fork of Open Office.  (unlikely)
    2) - ManyCam video manipulation software  (likely)
    Following info here, I opted to try to open an Adobe PDF file that was on my hard drive.  When I did, it refused and IE10 gave me an ActiveX error (AHA!!).   When I checked the installation of ManyCam, it had installed a version of DirectX that may have over-written the resident versions or disabled them somehow.
    I uninstalled ManyCam but left Libre Office's update in place, then I ran a system restore from a point 24-hrs before the installations.
    This resolved the problem 100%.
    So, the suggestion here is that there may be one or more program in the wild that is interupting the ActiveX or DirectX systems.  They may be running or installing an older version.  In this case it appears the handlers were broken.
    Once the system restore had completed I was able to open Adobe PDF files within my IE10 browser from the Internet as well as open PDF files from my hard drive.
    Note that this same issue also clearned up a problem I was having with the Comodo Dragon web browser, which is a fork of the Chrome project.  Once I eliminated the suspect program and ran the system restore all was well.  In the instance of the Comodo browser it was unable to open or reach anything - dead white screen below the menu bar.
    So my suggestion would be to take an inventory of recent program installations, remove/uninstall them, run system restore from a date before the suspect programs were added, and see what happens.  In my case that fixed the problem.

  • Cannot print a PDF file after upgrading to Windows 8.1

    Cannot print a PDF file after upgrading to Windows 8.1
    I can print anything else from either the Desktop or Start but not a PDF.  No error message but just does not print.
    Update: down loaded Adobe Reader which runs on the desktop so when I read a PDF file it now runs on the desktop and I can print it.

    Cannot print a PDF file after upgrading to Windows 8.1
    I can print anything else from either the Desktop or Start but not a PDF.  No error message but just does not print.
    Update: down loaded Adobe Reader which runs on the desktop so when I read a PDF file it now runs on the desktop and I can print it.

  • I cannot open a pdf file with aole-mail. I can open pdf files from windows explorer. I have associated pdf with adobe reader. My operating system is window

    I cannot open a pdf file with aol e-mail. I went to preferences in Adobe Reader but did not know what to enter for Incoming IMAP and outgoing SMTP. I can open pdf files from windows explorer as  I have associated .pdf files with adobe reader. My operating system is windows 7.
    When I try to open the pdf file within aol e-mail I get a message: 'Your security settings do not allow this file to be downloaded'.  I have not changed my security settings (Tools, Internet Options, security).

    Or http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    How do i solve - cannot access web server - error message when creating a project in 4.5 with PHP

    Screenshot of how it looks when i try to show a ms access form inside a iframe:
    http://oi58.tinypic.com/2vj4ish.jpg

  • Ever since I installed Safari 5.1 I can no longer access the pdf files on my website. I keep on getting an error with Webkit2webprocess.exe telling me that LogTransport2.dill was not found. Please help..

    Ever since I installed Safari 5.1 on my PC (XP) I can no longer access the pdf files on my website. I have no problems with Chrome and  Firefox. I keep on getting a message from WebKit2WebProcess.exe that the LogTransport2.dill was not found. (I HATE PCs...) I tried reinstalling Acrobat 9. I tried reinstalling Safari. I even tried an older version of Safari. Nothing Helped.  Others have tried it on their machine, and it worked fine. But I do not know what is the matter with mine. I suspect the root cause is the missing LogTransport2.dill file. But I do not know how to go about getting it.  Your help is truly appreciated. My website is http://www.hlmartworks.com.

    I have also found the article that provides 3 solutions but none of the solutions worked.

  • My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    My operating system is Windows XP SP3.  I have Adobe 11.0.08 installed.  I cannot print a pdf file/document. Error message - AeroRd32.exe - Unable To Locate Component  -  "Application failed to start because lxdautil.dll not found."  Any suggestions?

    That DLL is part of your printer driver; reinstall or update the device driver for your printer, and the message should go away.

  • I am running windows 7 64bit, have a brother printer MFC-J4510W with the latest driver update, have Adobe reader 11.0.10.32 and as of today I cannot print any pdf files that before I could, all help appreciated

    I am running windows 7 64bit, have a brother printer MFC-J4510W with the latest driver update, have Adobe reader 11.0.10.32 and as of today I cannot print any pdf files that before I could, all help appreciated
    I followed the FAQ troubleshooting and that didn't help

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • Installed Mac OS X v.10.6.7, and now we cannot create a PDF file

    Installed Mac OS X v.10.6.7, and now we cannot create a PDF file using Adobe Acrobat Professional.  This has been done on two computers, one an iMac and the other a MacBook Pro.  Assistance greatly appreciated.

    Yes, Adobe Acrobat X Pro is the same thing as Acrobat X Pro.
    Print to PDF is probably the most reliable way to create a PDF file.
    File > Create > PDF from File
    is shaky.  It works with some file types but not with others.
    Another issue is creating a multi-page PDF from a scanner.  If you neglect to check the box "Prompt for scanning more pages" and, instead, simply try to add a second page, the application crashes.

  • I cannot download a pdf file that was sent to me.

    I cannot download a pdf file that was sent to me.

    Sent from where? By whom? It may not be a PDF at all, just a virus in disguise. That aside, we need some system info at least...
    Mylenium

  • I cannot view a PDF file with the script in Adobe Garamond Pro on my iPad.  Can anyone help?

    I cannot view a PDF file written using Adobe Garamond Pro font on an iPad.  Can anyone help?

    Thanks for writing to us. Unfortunately, such advanced javascript support is currently not provided by Adobe Reader for Android.
    Thanks,
    Adobe Reader Team

Maybe you are looking for