I am no longer able to open or download most PDFs from web pages. I have the pop-up blocker turned off in Preferences.

In recent months I have found that I am unable to download or open PDF documents from web pages. Download links either open a blank page in a new tab or do nothing. PDFs that I am unable to view in Firefox can be viewed and/or downloaded in Safari most of the time and Chrome all of the time so I assume the problem is not my computer or operating system. I recently turned off the pop-up blocker but that did not make a difference. The problem has worsened over the past couple months, it appears that more and more web sites are moving to a different protocol for viewing/downloading PDFs. It used to happen occasionally but now I find that I am unable to view a majority - about 75% - of PDFs. I am using Firefox v18 for Mac with Mac OS X 10.6.8.

hello ahegarty, you could try using the [https://addons.mozilla.org/firefox/addon/pdfjs/ PDF Viewer] addon, for more details also see [[PDF files are blank and can't be downloaded on Mac]].

Similar Messages

  • Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9alredy

    Error message says need Adobe reader 8 or 9 installed to open pdfs from web pages yet Reader 9 is alredy installed on computer. Is this a 64 bit ossue although I am sure I did not have this problem prior to a replacement hard drive being installed.

    What is your operating system, browser?
    What is the exact message you are getting?

  • I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server wher

    I have a problem with two PDF's when trying to open them through a link on a web page. The two PDF's open fine with Adobe on my own PC and on the server I have copied it to but when they are opened through a link on a web page (pointing to the server where the PDFs open fine) I get an error 'There was an error processing a page. Invalid function resource' The other one just doesn't open at all. Can anyone help with this please?

    Hello,
    Are the pdf linked correctly in the website? Is this a public website? If yes, please post the link here.
    ~Deepak

  • CS6: DistributedCOM Error id: 10016 when open pdf from web page in Win8.1

    For example here below I've got the issue: 
    http://modemwifi.it/wp-content/uploads/asus-dsl-n55u.pdf
    Adobe Acrobat X pro V 10.1.8:
    DistributedCOM Error id: 10016 when open pdf from web page.
    Nome registro: System
    Origine:       Microsoft-Windows-DistributedCOM
    Data:          04/11/2013 19:09:19
    ID evento:     10016
    Categoria attività:Nessuna
    Livello:       Errore
    Parole chiave: Classico
    Utente:        PC-PIERO\Piero
    Computer:      Pc-Piero
    Descrizione:
    Le impostazioni delle autorizzazioni impostazioni predefinite del computer non concedono l'autorizzazione di Attivazione in Locale per l'applicazione server COM con CLSID
    {B801CA65-A1FC-11D0-85AD-444553540000}
    e APPID
    {2EAF0840-690A-101B-9CA8-9240CE2738AE}
    all'utente Pc-Piero\SID Piero (S-1-5-21-3453328585-262132574-2759341577-1001) dall'indirizzo LocalHost (tramite LRPC) in esecuzione nel SID del contenitore di applicazioni Non disponibile (S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1277922394). Per modificare tale autorizzazione di sicurezza, è possibile utilizzare lo strumento amministrativo Servizi componenti.
    XML evento:
    < Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-DistributedCOM" Guid="{1B562E86-B7AA-4131-BADC-B6F3A001407E}" EventSourceName="DCOM" />
        <EventID Qualifiers="0">10016</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8080000000000000</Keywords>
        <TimeCreated SystemTime="2013-11-04T18:09:19.468877700Z" />
        <EventRecordID>14806</EventRecordID>
        <Correlation />
        <Execution ProcessID="768" ThreadID="776" />
        <Channel>System</Channel>
        <Computer>Pc-Piero</Computer>
        <Security UserID="S-1-5-21-3453328585-262132574-2759341577-1001" />
      </System>
      <EventData>
        <Data Name="param1">impostazioni predefinite del computer</Data>
        <Data Name="param2">Locale</Data>
        <Data Name="param3">Attivazione</Data>
        <Data Name="param4">{B801CA65-A1FC-11D0-85AD-444553540000}</Data>
        <Data Name="param5">{2EAF0840-690A-101B-9CA8-9240CE2738AE}</Data>
        <Data Name="param6">Pc-Piero</Data>
        <Data Name="param7">Piero</Data>
        <Data Name="param8">S-1-5-21-3453328585-262132574-2759341577-1001</Data>
        <Data Name="param9">LocalHost (tramite LRPC)</Data>
        <Data Name="param10">Non disponibile</Data>
        <Data Name="param11">S-1-15-2-1430448594-2639229838-973813799-439329657-1197984847-4069167804-1 277922394</Data>
      </EventData>
    < /Event>
    How can I solve this problem?
    Thanks

    // I got this from an Action (I�m using Struts)
    java.sql.Blob file=(java.sql.Blob)request.getAttribute("PDFfile");
    String filename=(String)request.getAttribute("filename");
    try{
      int iLength = (int)(file.length());
      response.setHeader("Content-type", "application/pdf");   
      response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"");
      response.setHeader("Expires","0");
      response.setHeader("Cache-Control","must-revalidate, post-check=0, pre-check=0");
      response.setHeader("Pragma","public");
      response.setContentLength(iLength);
      ServletOutputStream os = response.getOutputStream();
      InputStream in = null;
      in = file.getBinaryStream();
      byte buff[] = new byte[1024];
      while (true) {
          int i = in.read(buff);
          if (i<0) break;      
          os.write(buff,0,i); 
      os.flush();
      os.close();
    } catch(Exception ex){
       out.println("Error while reading file : " + ex.getMessage());
    }and now it�s running !!! I�m not using response.setContentType(...) and I do this in response.setHeader("Content-type", "application/pdf"). And I use response.setHeader("Content-Disposition", "inline; filename=\""+filename+"\"") instead of response.setHeader("Content-Disposition", "attachment; filename=\""+filename+"\"");

  • After installing Firefox 4 Beta I am no longer able to open my Firefox 3. Even when I double click the firefox.exe in the correct progam folder it continues to open Firefox 4 Beta instead of 3.

    Opening from the Programs list doesn't work, from the windows search bar doesn't work, and directly opening the Firefox.exe in the correct program folder doesn't work either.
    I only got it to open once: upon first installing Firefox 4 Beta I asked it to pin it to the Windows 7 taskbar (it did not). My Firefox 3 program was still pinned to the taskbar however. So through that button I was able to open Firefox 3. But since then I have unpinned Firefox 3 and have pinned the Firefox 4 Beta to the taskbar instead. Now I can't get it to point back to Firefox 3.

    what a pain! However, the solution is to simply install the Add-On "Autofill Forms". I'm not certain why Mozilla didn't automatically install the add-on as most of us rely on this feature. It's definitely not a good enough reason to uninstall and reinstall an earlier version and this version has some neat features
    provided by www.techEccentric.com.au

  • For some reason I am no longer able to open Yahoo e mail attachments even those that I have opened in the past. They open in IE

    I have never had trouble opening attachments in Yahoo mail only since updating Firefox. They open fine when using IE

    hello ahegarty, you could try using the [https://addons.mozilla.org/firefox/addon/pdfjs/ PDF Viewer] addon, for more details also see [[PDF files are blank and can't be downloaded on Mac]].

  • Open and print a PDF from web

    I created an application to open a PDF and print it directly on the default printer. This application works if the file is a Windows' network address (example: \\192.168.0.4). But if I put an internet address (URL), the Acrobat Reader presents the following error:
    There was an error opening this document. The syntax of the name of the file, folder or name of the volume is incorrect.
    The command I'm using is:
    "C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe\" /t http: \\192.168.0.4:8082\test\file.pdf \\192.168.0.15\HPLaserJet
    There are print directly as a URL?

    >
    horatiusx wrote:
    > Hi all gurus.
    >
    > I developed a Web Dynpro application to let the users create their own sales orders.
    >
    > Now I need to let them print the orders when they need to. Searching on the documentation I have, I've never found anything about crating a pdf print from the WD Application.
    >
    > There must be a way, because I managed to do that even with the very old ITS (the one in which you had to write HTML code...) but i cannot find how.
    >
    > Can anyone help me please? Even a tutorial would be very appreciated.
    >
    > Thank you in advance...
    You need a Smartform, SAPScript, or AdobeForm to be defined for your output.  Define an action/method for print, then pass the data to your Form.  SmartForms are not bad, as SmartForms generate a Function Module, and are easy to call.
    Call the SmartForm Function with PDF output = 'X' (parameter within Output Control I think).  Then pass the PDF_DATA[] table (type = TAB_SOLIX) to a new window output .
    Don't have the code in front of me, but have done it several times.  
    Adobe Forms is another good option, but you need Adobe Server, and generally I have found ADOBE to be SLOOOOOWWWWW.  I think Steve Jobs might have been on to something with ADOBE -- just my opinion.
    And of course, it can be done with SAPSCript, but I would need a whole blog on how to do that.....

  • I deleted 2 toolbars for a coupon application I recently signed up for. I can no longer view my email, I can a message from Verizon (FIOS) that says the application is blocked. How do I ublock and allow email?

    I got a message from Verizon saying that my email application has been blocked and I can't figure out how to unblock this so I can see email. I will not be able to see any response you send, so can you send it to my husband's email: [email protected] Thanks.

    Open iPhoto, then under iPhoto on the menu bar, choose Preferences, then Accounts.
    Make sure the email account is setup just like in Mail...just checked mine and it had dropped the password (added that back in) and it had changed the port to a default 25 (changed that back to match Mail).  Now it works correctly.

  • HT1688 Someone changed the settings on my iPhone so that I can no longer update my apps or download new apps. I don't have the icon on my phone anymore. Can someone please tell me how to get it back?

    Someone changed the settings on my iPhone so that I can no longer update or add apps. The icon no longer appears. Can someone please tell me how to add that back?

    I should have added that the iTunes app is not displayed on my phone in order for me to add the apps.

  • HT1386 when I open itunes (downloaded to new HP), I do not have the left hand menue

    Hello,
    I have just downloaded iTunes to a new HP computer, with Windows 8. The left hand menu does not show when I open iTunes. Am trying to sync a CD I downloaded into my iPod Nano.
    Thanks for any and all assistance!
    Cynthia

    If you  have iTunes 11 turn on the Sidebar. Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar

  • I can not open or download files/PDF's. I keep getting the "Adobe Acrobat_Reader win binaries" message box. How can this be repaired so I can see PDF's? Thanks!

    I do not much about computers (old school), but sure could use someone's help! I cannot read anything I try to view from a website. I keep getting a Adobe box popping up that says "Adobe Acrobat_Reader win binaries". Every time I click the "Yes" button, it does nothing. Thanks in advance!

    To make a picture, like I did above - go to ACCESSORIES > SNIPPING TOOL.  When you click on snipping tool, the screen will gray out. Click and drag your cursor from one corner of the area you want to "snip" to the other - when you release, you will have a JPEG - save it as any other picture, or even email from the snip you just made.
    THat doesn't advance the PDFs trouble solution, but it's good to know!

  • HT5731 how long does it take to download a movie from itunes

    how long does it take to download a movie from itunes

    Hi jtkirkuk,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    iTunes Store: Movie rental frequently asked questions (FAQ)
    http://support.apple.com/kb/ht1657
    Cheers,
    - Judy

  • I want download  other apps from web links .but i cant open ? Can u help me how i downelod in my i  its very important for me these apps related from my business . So kindly sugest me

    Dear sir
    am using i6+. Iam facing some problems regarding apps download . I just start using iPhone.
    my problem is when i go for download some apps from web page I can't download only some zip shows on 2nd web page i mean whin i click on download link for som app atumaticaly open another broswing page and zip and app name shows but I can't install that app in my iphone .
    all thes apps very important for my business.
    kindly  sugest me how can i insttal these aaps in my iPhone.these apps not avlable in google play store and itune app store .
    wat can i do ?

    The ONLY apps that can be installed will be found in the iTunes app store.
    You cannot load any other apps at all.

  • Imac is no longer able to open the Configuration file

    Hi ,
    I have an imac ( ilamp) 20' connected to ADSL, via Netopia Router which is connected to the Airport extreme connected to imac, for the PB Aluminum Tiger 10.4.5. we both can connect. PB can print via imac/printer.
    The imac is no longer able to open the Configuration file, when i enter the pswd which is correct, i get the message "The Airport Admin. Utility was unable to read the configuration of the selected base station an error occurred while reading the configuration "
    My Beau updated Airport to V5.7, this is the first time since the update I've tried to access the conf. file for the imac which i have done numerous times prior.
    I have a new base station Ip address 254.128.0 in Airport Utility Admin, on the imac which does not reflect my network settings anywhere, and is not what it use to be, i think, it was one value different than the PB.Base station IP. I do not know how it changed neither one of us changed it.
    I tried using the Airport Setup assistant (imac), I received this message:
    "Appropriate Airport hardware was bot found on this computer,if you recently
    Installed, an Airport card,please shut down your computer$ make sure the card is properly istalled."
    The imac does not have a card, nor do i think it needs one.
    I would like to be able to at least open the configuration file.
    Thank you for reading my post.
    Eme
    Power PC G4 (3.3) iMac♥ Flat Panel 10.3.9 & 15 Alum.PowerBook Tiger   Mac OS X (10.4.4)  

    Hi Kes, a star for the company !
    I made an error on my first post I have a Netopia modem, Airport router.
    And so it remains, i guess that there must be an easy answer somewhere
    that I am missing that I/we should read, some direction to that would be helpful, and I would be very appreciative.
    As I said the password had been set, and it is not an issue of that being forgotten, i wondered if it was changed back to "public" tried, not it.
    particular because everytime the imac wakes one of the folders on ( no one else in office just me and boyfriend and it is his work folder he has a copy on the PB.( the folder on desk top has been clicked on, the one with sensitve info, i have backed the folder up and secure trashed it, just in case some security issue hacking has taken place, thats closing the barn door after the fact.
    Good luck,w/ this Q.
    regards Eme
    Power PC G4 (3.3) iMac ♥ Flat Panel 10.3.9 & 15 Alum.PowerBook Tiger   Mac OS X (10.4.5)  

  • Since upgrading to FaceTime 1.0.5 (170) I am no longer able to open the application on my MacBook Pro. I am using operation system OSX 10.6.8 and being presented with error message "You have been disconnected  - an internal error occurred.

    No longer able to open the application on my MacBook Pro since upgrading to FaceTime 1.0.5 (170). The operating system is OSX 10.6.8. 

    My problem opening FaceTime after the upgrade is now solved. I didn't pay enough attention when prompted to decide where to store the application upgrade and as a consequence the computer created another "Applications" folder within the existing one. When I subsequently clicked on the icon on the dock to open the application the computer couldn't find the software.
    Makerfield2

Maybe you are looking for

  • Questions on Commands for planning application

    Hi, 1. Where can i get the information on commands for planning functions? 2. What is the difference between ---Execute planning function simple and - Execute planning function 3. I create planning layout with few buttons a. Copy: I clicked on the co

  • RV042 Connectivity Loss after upgrade to 1.3.13.02

    After upgrading an RV042 from 1.3.12.19 to 1.3.13.02, it loses connectivity after several hours. RV042 WAN1 is connected to cable modem (WAN2/DMZ is unused), configured to obtain IP Address. Cold booting all devices, RV042, AP & Cable modem, re-estab

  • Is it possible to create LSMW for PQ10, PQ13?

    Hi Fridz, I have created the OM actions, now I'm trying to create LSMW for the actions PQ10 (creation of org unit), PQ13 (Creation of Position) but while recording LSMW relationships are not creating under - Maintain Field Mapping and Conversion Rule

  • How to set password for iOS7

    how do I set up the password for iOSi7 which I downloaded to my iPad mini?  It refuses to accept my Apple Password, and my device says "iPad is disabled"

  • Cannot change default passivation table/sequence (PS_TXN, PS_TXN_SEQ)

    Hi All , i have the following problem: I'm preparing the ADF/ADF Faces Application to run in failover mode. One of the problems which i have is that after turning-on the Application Modules failover mode, the application performance decrease signific