Wont display pdf files from bookmarked sites

I've upgraded to Firefox 4 and now when I go to some of bookmarked sites that have attached PDF files, I'm unable to view those PDF files. I didn't have this problem with Firefox 3.5, however, per your suggestion, I've downloaded Firefox 4 to avoid any possible security issues. Any possible solutions, or is it possible to revert to using 3.5 w/0 any security issues?

Back up all data.
Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
/Library/Internet Plug-ins
From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
If you still have the issue, repeat 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 again.

Similar Messages

  • Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Hi, since installing mountain lion on my macbook, it wont download pdf files from internet sites, the same problem does not exist on my mac mini, i am using firefox on both macs, please help!

    Back up all data.
    Quit Safari. In the Finder, select Go ▹ Go to Folder... from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then launch Safari and test.
    If you still have the issue, repeat 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 again.

  • Mac OS X cannot open pdf files from online sites.

    Mac OS X cannot open pdf files from online sites.

    The problem is definitely between my safari and Adobe.
    I can open documents in emails. But not something like this.
    Your Folk Project newsletter for the coming month is available for download at:
    http://folkproject.org/enl/eNewsletterDownload.shtml
    Kathryn Weidener
    Storyteller
    908 369-7571
    [email protected]

  • Since I downloaded version 4 of Firefox, I'm having the following problems: Extremely slow at loading all web sites, can't view PDF files from web sites, and lots of unresponsive script messages. How can I fix this?

    I downloaded version 4 of Firefox this week and have been having problems since. Firefox is now extremely slow at loading all web sites. Trying to view PDF files from web sites crashes Firefox. I'm getting lots of unresponsive script messages. How can I fix this?

    I downloaded version 4 of Firefox this week and have been having problems since. Firefox is now extremely slow at loading all web sites. Trying to view PDF files from web sites crashes Firefox. I'm getting lots of unresponsive script messages. How can I fix this?

  • Plug-in PDF, Internet Explorer, unable to open a pdf file from web site. Question mark

    Hello,
    A computer where Acrobat 9 Standard and Acrobat Reader 9 have been installed.
    When I try to read a pdf file from a web site and read it in IE, I get a popup whith a question mark and no text.
    The pdf file is not open.
    I have try to reinstall the last reader but the problem is not solved.
    Thanks for your help.
    fabrice

    Any ideas how to solve this issue?
    Try using Protected Mode Off.  Then you will be at the same level of security that those other programs are running at.  You could also try elevating the iexplore.exe task.  That would turn off Protected Mode in that task automatically but then
    you would be running also with Administrator level authority which might be excessive.
    Robert Aldwinckle

  • How to display Pdf file in iPad site

    Hi
    How to display Pdf file in web page which can able to view in iPad safari?
    Thanks,
    Arun

    You can't really.
    You need to use DHTML in the swf-wrapper HTML file, usually a
    division wrapped iFrame, and load the PDF into the iFrame as an
    overlay to the Flash.

  • Display pdf file from server on android

    Hi,
    I don't know if here is a right place to ask this question.
    I am new to Flash Builder 4.5 and I need to show a PDF file from my server on Android device.
    Is there any suggestion how I can do this.
    Thanks in advance,
    Mana

    I really don't know how I should use <html>, But if you mean "htmlloader", that doesn't work on android. I have a piece of code as below:
    private var pdf:HTMLLoader;var request:URLRequest = new URLRequest("a URL/mypdf.pdf");
    pdf = new HTMLLoader();pdf.load(request);
    But it does not work.
    Could you help me with <html> and how i can use it in my code?
    Thanks,
    Mana

  • Cannot download pdf files from internet site with either acrobat pro X or pro XI on windows 8 comput

    cannot download pdf files from internet website with either acrobat pro x or proXI on windows 8 computer.  windows 7, no problem.

    Hi valerieross,
    Acrobat can be used to view pdf's or edit pdf's not download them.
    Check your browser settings.
    If you are referring to viewing pdf's in browser, then please check the following : http://helpx.adobe.com/acrobat/kb/cant-view-pdf-web.html

  • Displaying PDF file from database BLOB

    I have successfully added a PDF file to a table as a BLOB. Now, I need to display the BLOB. I have created the following package but it does not display anything. Can someone please help?
    SQL> create or replace package image_get
    2 as
    3 procedure pdf( p_id in demo.id%type );
    4 end;
    5 /
    Package created.
    SQL> create or replace package body image_get
    2 as
    3
    4 procedure pdf( p_id in demo.id%type )
    5 is
    6 l_lob blob;
    7 l_amt number default 30;
    8 l_off number default 1;
    9 l_raw raw(4096);
    10 begin
    11 select theBlob into l_lob
    12 from demo
    13 where id = p_id;
    14
    15 owa_util.mime_header( 'image/pdf' );
    16 begin
    17 loop
    18 dbms_lob.read(l_lob,l_amt,l_off,l_raw);
    19 htp.prn(utl_raw.cast_to_varchar2(l_raw));
    20 l_off := l_off+l_amt;
    21 l_amt := 4096;
    22 end loop;
    23 exception
    24 when no_data_found then
    25 NULL;
    26 end;
    27 end;
    28 end;
    29 /
    Package body created.
    SQL> DECLARE
    2 l_pdf int(1);
    3 begin
    4 l_pdf := 1;
    5 image_get.PDF(l_pdf);
    6 end;
    7 /
    PL/SQL procedure successfully completed.
    SQL> DECLARE
    2 Image1 BLOB;
    3 ImageNum NUMBER := 1;
    4 BEGIN
    5 SELECT TheBLOB INTO Image1 FROM demo
    6 WHERE id = ImageNum;
    7 DBMS_OUTPUT.PUT_LINE('Size of the Image is: ' ||
    8 DBMS_LOB.GETLENGTH(Image1));
    9 /* more LOB routines */
    10 END;
    11 /
    Size of the Image is: 14064
    PL/SQL procedure successfully completed.
    SQL> exit
    Am I missing something? I recently discovered that I need to set SERVEROUTPUT on to display the DBMS_OUTPUT. Is their some other environment variable I need to set.
    Thanks!

    *Always post code wrapped in <a href=http://wikis.sun.com/display/Forums/Forums+FAQ#ForumsFAQ-Arethereanyusefulformattingoptionsnotshownonthesidebar?"><tt>\...\</tt> tags</a>:*
      PROCEDURE lf_html_pdf (pv_image IN VARCHAR2, pv_index IN NUMBER) is
         l_mime        VARCHAR2 (255);
         l_length      NUMBER;
         l_file_name   VARCHAR2 (2000);
         lob_loc       BLOB;
      BEGIN
          begin
            selecT OI_BLOB,DBMS_LOB.getlength (OI_BLOB)
            into lob_loc,l_length
            from ord_img
            where  oi_tno= pv_image
              and oi_ti='PDF'
              and oi_idx=pv_index;
          exception
                when others then
                null;
            end;
         OWA_UTIL.mime_header (NVL (l_mime, 'application/pdf'), FALSE);
         HTP.p ('Content-length: ' || l_length);
         OWA_UTIL.http_header_close;
         WPG_DOCLOAD.download_file (lob_loc);
      END lf_html_pdf; Start by getting rid of:
          exception
                when others then
                null;and never using it anywhere ever again.
    If you're not actually going to use the <tt>l_mime</tt> and <tt>l_file_name</tt> variables then remove these as well. (Although I really think you should set a filename.)
    >
    Error report:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at "SYS.OWA_UTIL", line 356
    ORA-06512: at "SYS.OWA_UTIL", line 415
    ORA-06512: at "HCLABPRO.PKG_PDF", line 220
    ORA-06512: at line 2
    06502. 00000 - "PL/SQL: numeric or value error%s"
    >
    The error stack indicates that the exception is being raised in <tt>HCLABPRO.PKG_PDF</tt>: what is <tt>HCLABPRO.PKG_PDF</tt>? Does this actually have anything to do with the procedure above?
    I get the error message as below when i execute the procedure above;How do you execute it?
    What happens when it's executed without the <tt>when others...</tt> built-in bug?

  • When wanting to download a PDF file from a site, when cliicking on the link, Firefox 3.6.13 goes to a blank page. Previous versions worked perfectly. How do I fix this please?

    Since no window shows up asking where to download, etc as happens in other browsers (Opera) and in previous versions of Firefox, no able to click on a web site link to download a PDF file. Just goes to a blank page.

    Some firewalls like Kaspersky can block content and send a 1x1 GIF image instead.
    Kaspersky: Protection > Firewall > Filtration system: disable the "Banner Ad Blocker"
    See [[Configuring Kaspersky Internet Security]] and [[Firewalls]]

  • Safari doesn't display pdf file from within Dropbox

    When I click on a link on a web page that takes me to a pdf file located in a shared Dropbox folder, Safari only gives me a solid black page and doesn't open the pdf file.  All the other browsers do, Chrome, Firefox and even IE.  How can I fix this?  I have Mountain Lion and the latest version of Safari.  Pdf-plugin-244 is installed.  I tried the suggestion in another posting about viewing pdf files in Safari, and it didn't fix the problem.

    Pdf-plugin-244 is installed.
    Test without it.

  • Opening .ppt or .pdf files from flash site

    I'm trying to open a .ppt file directly into powerpoint or a
    .pdf file directly into adobe reader. When I use the GetURL
    actionscript they always open in IE. Is it possible and how do I do
    it? I'm a newbie to flash so please keep your explanations simple

    Hi,
    I read your thread with great interest and it sounds exactly
    like what I'm looking for. The only downside is I can't seem to get
    it to work. I have detailed below what I need to happen and what I
    think I need to do to make it happen.
    What I need to happen:
    Open a .pdf or a .ppt in Adobe Reader or Powerpoint (for
    respective file extensions) by clicking on a button contained on a
    .swf movie. The scenario is that the .swf file is located in C:\My
    Folder\flash.swf and the .pdf or .ppt are in the same folder.
    What I need to do to make it happen:
    Create a folder in the following location C:\My
    Folder\fscommand
    Create a .bat file (called pdflauncher.bat) and save it in
    C:\My Folder\fscommand - the .bat file has the code start
    \myfile.pdf
    Create a button on the .swf file with the actionscrip as
    below:
    on (release) {
    fscommand("exec", "pdflauncher.bat");
    This is what I've done based on reading through your previous
    thread but it doesn't work.
    Any help would be greatly appreciated.
    Colin

  • Lately when I launch Firefox an alert window comes up asking of I want this program to make changes to the computer. Also, I am unable to download PDF files from other sites.

    This Problem started about two weeks ago.

    Check that you do not run Firefox as Administrator.
    Right-click the Firefox desktop shortcut and choose "Properties".
    Make sure that all items are deselected in the "Compatibility" tab of the Properties window.
    * Privilege Level: "Run this program as Administrator" should not be selected
    * "Run this program in compatibility mode for:" should not be selected
    Also check the Properties of the firefox.exe program in the Firefox program directory.

  • Unable to open PDF files from website

    hi friends,
    I am using iPad Air and iOS 7.1.2. When I tried to open PDF files from below site in safari,
    http://www.iar.com/Products/IAR-visualSTATE/User-guides/
    ftp://ftp.iar.se/WWWfiles/vs/QuickStartTutorial.pdf
    it shows error as "Safari can not open the page because it could not load any data".
    KIshore.

    Safari seems to have trouble with FTP sites.  You may need another Browser to open these PDFs.  Opera seems to Work.
    https://itunes.apple.com/en/app/opera-mini-web-browser/id363729560?mt=8

  • Problems opening pdf-files from KM of portal

    Hi,
    we store documents in our portal in KM. When I use pdf-files that where not saved with Office2007 tools I get the problem, that I can open the file once. If I open it the second time I get the error message "file doesn't start with "%PDF-". and the file will not be opend. If I delete the temporary files in the internet explorer, the file can be opended, again.
    If I open the file directly in the internet explorer I don't have those problems, so it seems, that the portal uses a different viewer than the internet explorer itself. 
    Has anyone an idea how to solve this problem?
    Regards
    Ulrike

    Ulrike,
    I think this is a known issue.
    Affected versions:
    o KMC SAP NetWeaver 7.0 (formerly named 2004s) SP 14
    o KMC SAP NetWeaver 7.0 (formerly named 2004s) SP 15
    If you have the above KMC and SP Versions then you need to follow the below SAP note:
    Note 1146711 - Problem opening PDF files.
    Have you checked the belowSAP Note?
    Note 954627 - Issues with opening/displaying PDF files from KM
    Regards,
    Karthick Eswaran

Maybe you are looking for

  • Getting material from dvd in fcp

    Hi! I don´t know how to get material (I suppose digibeta from TV) in fcp. I only get Video and Audio seperated! Will the quality of the material be better, if I get the original digibeta material? Help! Mel

  • Tree view control font size

    Hello, (LabVIEW 8.0): I have found that the font size of the tree view items can be set at design time from the drop down list on the menu bar.  However, is it possible to make each "level" (i.e. parent = a level, child = different level, grandchild 

  • Remove from Table

    Hello all. I have a listbox that i am using to design cycles and add cycle steps to a table. If i make a mistake i can clear the whole table by reinitializing to default value. My problem is that i cannot figure out how to remove the last step in the

  • Trouble Downloading ITunes 8 - "Bonjour service could not be installed..."

    Hello, I have read through the post and I haven't seen anyone else with this particular problem. I just bought an Itouch and when I went to install version 8 of itunes (i have v7 on my computer which has windows xp, already from my previous ipod)an e

  • 30 Days sync

    Is there an app to sync more than 30 days of emails in my inbox?