Cannot open pdf file after updating to 10.4.11

I recently updated my operating system from 10.4 to 10.4.11.
after updating, I now cannot open any pdf files. I had/have adobe 7 before the update. I thought maybe there was a problem with the program after the update so I downloaded adobe 9- the newest.
I still am not able to open any pdf files.
any ideas??
thanks!
if this is in the wrong category, please let me know.

More than you asked for but good stuff. Permissions is buried in there somewhere.
Reading
[Resolve startup issues and perform disk maintenance with Disk Utility and fsck|http://docs.info.apple.com/article.html?artnum=106214]
[Using Disk Utility in Mac OS X 10.4.3 or later|http://docs.info.apple.com/article.html?artnum=302672]
[Disk Utility's Repair Disk Permissions 10.0-10.6|http://docs.info.apple.com/article.html?artnum=25751]
"Try Disk Utility" (modified from [http://support.apple.com/kb/TS1417])
1. Insert the Mac OS X Install disc that came with your computer (Edit: Do not use this disc if it is not the same general version as what you have currently on your computer, e.g. use a Tiger disc for a Tiger drive, not a Panther disc), then restart the computer while holding the C key.
2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
3. Click the First Aid tab.
4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
5. Select your Mac OS X volume.
6. Click Repair. Disk Utility checks and repairs the disk.
Then boot in Safe Mode, (holding Shift key down at bootup; takes longer to boot this way so be patient), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
[Mac OS X: Starting up in Safe Mode|http://docs.info.apple.com/article.html?artnum=107393]
[What is Safe Boot, Safe Mode? (Mac OS X)|http://support.apple.com/kb/HT1564]
[Safe Boot takes longer than normal startup|http://docs.info.apple.com/article.html?artnum=107394]
[Mac OS X 10.4, 10.5- Computer shuts down during Safe Boot|http://support.apple.com/kb/TA24054]

Similar Messages

  • Cannot open PDF file after update to Acrobat Reader 11.0.1 / 10.1.5

    I receive faxes from a service in the form of PDF files.  Up until today, I have been able to open them with no problem using Acrobat Reader 10.1.4 and lower. 
    Today, I updated Acrobat Reader to 10.1.5, and it's suddenly unable to open any of those files.  I tried uninstalling 10.1.5 and installing 11.0.1, and the same problem exists. 
    I also tried a computer with 11.0.0 that had not yet updated, and it works fine.
    Apparently, it's something about this latest update. 
    The PDF files open in other viewers like Foxit, Sumatra, and Chrome with no problem. 
    Here is the error:
    The offending file can be gotten from here:
    https://dl.dropbox.com/u/24145333/Cisco_fax.pdf
    Any help you can provide is greatly appreciated!
    /Mike

    Apparently I was incorrect on the Cisco box, we are using something different now. We use an Extended application server attached to a Meta Call feature server. This is a known issue for them.
    "We have discovered an issue that means that the format of fax PDFs generated on most versions of Metaswitch EAS is incompatible with the latest Adobe Reader (11.0.01).  This means that when your end users upgrade their Adobe Reader to 11.0.01, they will no longer be able to view faxes received from EAS in PDF format."
    The same is with version 10.1.5. I uninstalled 10.1.5 and reinstalled 10.1.4 and the problem went away. No updates for us for now

  • Unable to open PDF files after update failed

    I have not be able to open any of my many PDF files after last update.  The update failed - error message "Error 1327.Invalid Drive:F\".  Drive F is where I plug in my flash drive, there is nothing in drive F.  I am working on my Ed.D and have 100's of PDF files pertaining to my research.  I need to be able to open these files.  I use a lot of these every day.  I can't unstall the program -- get the same error message, can't repair it.  Nothing works.  Can anyone tell me what to do.  I need a answer fast.

    Some people in other posts have suggested to insert a USB drive into F drive.

  • Cannot open pdf files after resent downloads

    downloaded latest update now cannot open pdf files

    Start Adobe Acrobat, use the menu File > Open... and select a PDF file. What happens now?

  • Download problem with JSF: Cannot open PDF-file after opening WORD-file

    Hello,
    I have a JSP (created with Java Studio Creator) which displays a table with links to different files. Some links open PDF-documents, other for instance DOC-files (msword). I download the file as follows:
    public String downloadFile(String fileName) {
    try {
    int dotIndex = fileName.lastIndexOf('.');
    String fileExtension = "";
    String contentType = "";
    if(dotIndex > 0) {
    fileExtension = fileName.substring(dotIndex+1, fileName.length());
    contentType=CONTENT_TYPES.get(fileExtension.toUpperCase()).toString();
    if(!fileExtension.equals("") && !contentType.equals("")) {
    // method that reads file to the byte array
    byte[] fileContent = getContentOfFile(new File(fileName));
    FacesContext faces = FacesContext.getCurrentInstance();
    HttpServletResponse response = (HttpServletResponse) faces.getExternalContext().getResponse();
    response.setContentType(contentType);
    response.setContentLength(fileContent.length);
    response.setHeader("Content-disposition", "inline; filename=\""+fileName+"\"");
    try {
    ServletOutputStream out;
    out = response.getOutputStream();
    out.write(fileContent);
    } catch (IOException e) {
    e.printStackTrace();
    faces.responseComplete();
    catch(Exception ex) {
    return ("!!!ERROR: downloadFile(fileName) - Could not completely download file "+ fileName + ex.getMessage());
    return "";
    contentType is application/pdf if it`s a PDF-file or application/msword if it`s a word-file.
    fileName contains the full file path.
    link-properties:
    <ui:hyperlink action="#{showOriginalPDF.hyperlinkShowPDF_action}" binding="#{showOriginalPDF.hyperlinkShowPDF}"
    id="hyperlinkShowPDF" immediate="true" onClick="testSubmit()" target="_blank" text="#{currentRow.value['display']}"/>
    and the code of the JS-function testSubmit() (without this function I couldn�t get the right row selection in the hyperlink-table):
    function testSubmit() {
    document.getElementById('form1').submit();
    return false;
    All pdf-links are working fine and the correct document is displayed in a new browser window. but if I open a WORD-document and after that I click on another link to a pdf-file, the WORD-file is loaded again in the new window. Only if I close the window which contains the WORD-document, I can download the correct pdf after that.
    Is something wrong with the response header (I tried "attachment" instead of "inline" too but without effect)?
    Can anybody help?

    More than you asked for but good stuff. Permissions is buried in there somewhere.
    Reading
    [Resolve startup issues and perform disk maintenance with Disk Utility and fsck|http://docs.info.apple.com/article.html?artnum=106214]
    [Using Disk Utility in Mac OS X 10.4.3 or later|http://docs.info.apple.com/article.html?artnum=302672]
    [Disk Utility's Repair Disk Permissions 10.0-10.6|http://docs.info.apple.com/article.html?artnum=25751]
    "Try Disk Utility" (modified from [http://support.apple.com/kb/TS1417])
    1. Insert the Mac OS X Install disc that came with your computer (Edit: Do not use this disc if it is not the same general version as what you have currently on your computer, e.g. use a Tiger disc for a Tiger drive, not a Panther disc), then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.
    Then boot in Safe Mode, (holding Shift key down at bootup; takes longer to boot this way so be patient), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    [Mac OS X: Starting up in Safe Mode|http://docs.info.apple.com/article.html?artnum=107393]
    [What is Safe Boot, Safe Mode? (Mac OS X)|http://support.apple.com/kb/HT1564]
    [Safe Boot takes longer than normal startup|http://docs.info.apple.com/article.html?artnum=107394]
    [Mac OS X 10.4, 10.5- Computer shuts down during Safe Boot|http://support.apple.com/kb/TA24054]

  • Cannot open pdf files after installing app

    I have installed the adobe reader app on my tablet but when I try to open a pdf file it downloads and when I try to open it from my downloads it says cannot open file. Please help!

    Can you share the sample pdf file where you are encountering this issue? Also possibly a screenshot of the error you are receiving?

  • After activating "Click-to-play" plug-ins, I cannot open pdf files.

    In the latest release of Firefox, information about how to prevent plug-ins from loading automatically was in the release notes. I activated this in about:config. (Click-to-play).
    After that, I cannot open pdf files! When I click on a link all I get is an empty window. Reloading page don't help.
    What I can do, is to click on the button next to the awesome bar and set that plug-ins will always load automatically for this page. Then the pdf file loads.
    Another work around is to copy the link and paste it in IE.
    Is this a bug with "click-to-play"?

    Thanks cor-el. I have read the various bug reports and it is indeed the same. Has been known for a while...
    Anyway, I find no mention of the work-around: "Click on the button next to the awesome bar and set that plug-ins will always load automatically for this page."
    I don't know if there is a place to give that feedback.

  • I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    I have iPad 4th Generation with iOS 6.1.3  Since my iBooks was updated to version 3.1.1 I cannot open pdf file attachment in my email.  When I tap of the attachment, the iBooks icon no longer show itself.  Can someone please help?

    Thanks for all (Ocean20 & Courcoul) who replied. 
    Reset the device did not help me but it does triggers me to attempt to resend the PDF file attachment on email--and it works the 2nd time.  My problem is now solved.
    The Adobe Reader is very helpful--it allows me to scroll through the document easily, unlike iBooks, where I cannot scroll straight up or down.

  • Hello. My safari (and i keep it updated) cannot open PDF files. Should i install Adobe Reader and which version????? I have Mac Book Pro running OS 10.9

    My safari (and i keep it updated) cannot open PDF files.Should i install Adobe Reader and which version????/ I have Mac Book Pro running OS 10.9
    Please help me!!!!

    Back up all data.
    If Adobe Reader or Acrobat is installed, there should be a setting in its preferences 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. Otherwise do as follows.
    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 (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, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present. The same goes for a plugin called "iGetter," and perhaps others — I don't have a complete list.
    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.

  • SAFARI 6.1.3 update to Reader 11.0.07 - cannot open pdf files that are presently on my computer. Previous version had no problem. Any ideas?

    SAFARI 6.1.3 update to Reader 11.0.07 … cannot open pdf files that are presently on my computer. Previous version had no problem. Any ideas? (Here is the message: Adobe Reader could not open 'Digital_Holiday_Cookbook.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    Thank you Pat!!!
    Craig Ekonomos
    [email address removed]

  • Since updating to 4, I cannot open pdf files through my hotmail account

    I cannot open pdf files with the new version of FF. I can forward the email to another account, not using FF, and everything opens fine.

    '''''# * bold text'''''

  • Cannot open pdf file with Firefox 11.0

    Firefox automatically upgrades the version I am using. Since it was recently upgraded I cannot open pdf files. Am faced with a blank page. I went through some of the suggestions on these pages and when I opened the Tools window, there is a warning:
    Firefox PDF Plugin for Mac OS X is incompatible with Firefox 11!
    Is there a way around it? Or is it time to say goodbye to Firefox and move to Safari?

    When Firefox updates, it turns
    off add-ons that are not
    compatible with the new
    version. In addition, add-ons
    that may have been
    automatically installed by other
    programs without your
    knowledge (third party add-
    ons) have been disabled. For
    more info about re-enabling
    add-ons, see the link below.
    http://support.mozilla.org/en-US/kb/Add-ons%20are%20disabled%20after%20updating%20Firefox#os=android&browser=m10

  • I cannot open PDF files

    Hallo,
    I cannot open PDF files.
    I download them, when I try to open, the message with damaged file and cannot be repared appears on my screen.I did delete and install Adobe Reader, but I have the same problem.
    Can anyone help?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, or by a peripheral device.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Cannot open powerpoint file after renaming it.

    Cannot open powerpoint file after I renamed it. I keep getting error messages -35 and -108. It says I have unknown access to the file now. What can I do?

    As a cross-reference:
    Eric Root
    Re: Hi! I have a problem with finder 
    01.03.2014 12:14 (in response to Fexei)
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Preferences/com.apple.finder.plist. Move the .plist to your desktop.
    Re-launch Finder by logging out/in and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer ones.
    Thanks to leonie for some information contained in this.
    You might need to redo the View settings after an update.
    Resolved the Problem! Thanks to Eric and Leonie
    Felix

  • I cannot open pdf files from one supplier when using Adobe Reader but I can using another Viewer

    I cannot open pdf files from one supplier when using Adobe Reader but I can open it if using Google PDF viewer or another viewer. The Adobe reader gives the error "There was an error opening this document. The file is damaged and could not be repaired" when I try to open the file. The version of Adobe Reader is 10.1.7, however I have tried other versions and they all fail the same way.  I have tested on a number of different PC's in different networks and all fail using Adobe Reader but work using alternate viewer. Also the PC's will open a PDF from any other source.

    Newer Reader versions are more strict than older versions (and other PDF viewers).  If certain minimum requirements are not met, Reader will tell you that the PDF is damaged.  This can happen when a document was created with software that does not adhere to PDF standards, or when the file was damaged during a download or email transmission.
    You should contact the creator of these PDFs.

Maybe you are looking for

  • Photoshop CS4 Menu toolbar display bug and fullscreen slowness...

    http://img384.imageshack.us/img384/8202/menutoolsbugee3.gif I'm having a display bug with the menu toolbar in Photoshop CS4 Extended. Notice the area of tools is gone and replaced by random pixels? This happens whenever I enter the fullscreen mode th

  • How can I print my calendar without the color codes?

    I need to print my 2005 and 2006 calendars (one month to a page) and then to highlight some of the line items for certain dates. I don't know how to get rid of the darn "color coding" so I just get a simple calendar with no group colors. I appreciate

  • Failure in proxy use

    Hi everyone,    I have a problem with offline editing in a roundtrip between After Effects CC and Premiere Pro CC. I'll tell you exactly what I am doing, maybe someone can point what I'm doing wrong. I use Windows 7.    So I intend to edit and do the

  • Newbie EL help needed

    I've done quite a bit of JSP work and am now trying to grok JSP 2.0 with Tomcat 5.0.28. Why does example A work yet B doesn't? A) ${33} B) <% int x = 33; %> ${x}

  • Menu 3D not appear.

    Hi, I downloaded photoshop cs6 trial exstended in my Macbook pro, here below the features of my mac: Processor 2.53 GHz Intel Core i5 Memory 8 GB 1067 MHz DDR3 Graphic Card NVIDIA GeForce GT 330M 512 MB Software OS X 10.8.3 After installing the produ