Unable to save or export after last security update.

After the last security upate I can not save in any software. When I try to save on word, excel, indesign or illustrator, the progam just freezes. After I hit save I have to force quit, because the progam will not respond. What can I do?

Read this thread:
https://discussions.apple.com/message/17482444#17482444

Similar Messages

  • CD Tray open automatically after last Security Update

    when I start up or restart Mymac Pro CD Tray open automatically after last Security Update. Also I could not reinstall Mac OS Tiger because CD Tray open automatically every start up or restart. What's happen? Somebody help me! Please~

    Hi.
    If you have a USB keyboard and mouse, try unplugging them and then restart. If you have a Bluetooth set, remove the batteries and restart.
    See what happens.
    Good Luck.

  • Cannot start mac mini coreduo after last security update

    Hi,
    after last security update mac mini cannot see anymore the new 7200 rpm hddisk which worked like a charm since that…
    When try to boot now I see only a question mark folder…
    I can fix permissions via dvd, I can see the mac mini disk if i connet via firewire to another mac,
    but cannot boot from it…
    tried a kind of tech tool test: it seems that I've got a huge amount of corrupted .plist files…
    How could that happen?
    does it mean that it's not an hardware issue?
    should I reinstall snow?
    help me please

    tmma.a wrote:
    I thought that erasing was formatting as well;
    no, it's not. there is probably something wrong with the partition map of the drive which is why your mac firmware does not recognize it as a boot drive when you restart. simply erasing the drive won't fix it. reformatting might.
    anyway I'm reinstalling now, if doesn't work will try reformatting too…

  • After last security update, Mail quits when trying to save and attach

    Software Update installed the last security update.
    Ever since, Mail quits when I try to save a message, save an attachment, copy a message and attach a file.
    These are the only problems that Update caused.
    Might it have to do with Java?
    If so, which files must I erase so that I can re-install Java Release 6?
    What do I do?
    Firehat

    Sheila, I'd try these two steps first, then maybe reapply the last update by downloading it from apple downloads instead of SW Update...
    Using Disk Utility in Mac OS X 10.4.3 or later to verify or repair disks...
    http://docs.info.apple.com/article.html?artnum=302672
    About Disk Utility's Repair Disk Permissions feature...
    http://docs.info.apple.com/article.html?artnum=25751

  • G4 won't boot after last Security Update

    I have an AGP G4 tower that's been running 10.4.11 fine until today. The last thing I did was Software Update. The only things on the list were an iLife update and a Security Update. I don't know the update number but since I always keep the system updated, I can only assume these two updates were the latest available.
    So after the update... I hit the "restart" button but then I get the grey screen with a prohibitory sign and a spinning wheel.
    It's not a hardware issue... I can reboot this machine into an alternate hard drive just fine.
    I fixed permissions.
    I ran disk utility - hard disk checked out ok.
    Still can't boot using this drive.
    Obviously this last security update broke my system folder because it's as if it can't find a valid system.
    So now the question is, what can I do to fix my system folder?
    Thank-you.

    Simple fix.
    I downloaded and installed the 10.4.11 Combo Update onto original drive while booted into the alternate drive. I then downloaded and installed the Security Update 2008-0001 onto the original drive. As a precaution I repaired permissions on the original drive.
    Successfully booted into original drive.

  • Difficulty with some sites after last Security update..

    anyone else had any problems?
    I've found that with my bank, and a couple of other sites like myspace, Safari keeps instantly coming up with 'server cannot be found' error, without even trying to access the sites. Sometimes shift-click/return does the trick (after 10 hits!) or I end up having to reset Safari, and it'll work for a couple of visits. And even then, once I've managed to get into the site, clicking links is a chance in itself, that I don't get the same error.
    My mac at work was fine (didn't do the last Security update), and all this only started after the last update..
    GAAAH!!!!

    Terrible Problem, and I'm certain attributable to the latest Security Update. I have tried EVERYTHING, including deep system cache clearning, combined update, permission repairs, Purging ALL plugins from Safari, DNS cache reset... you name it. I am an EE, Mac User for 20 years, computer/Unix savvy, and am completely stumped, having tried EVERY trick in book short of the Windows Style "Reformat and Reload the Hard Disk." I can't log into gmail, or this site for that matter (using an old laptop presently). The problem occurs with the following common denominators: ASP page, Screen Name/Password dialog box, and then either a return to blank dialog page, or an endless string of redirects. THIS AFFECTS EVERY BROWSER I TRY, INCLUDING THE LATEST FIREFOX. Needless to say, this problem is driving me NUTS, and of course I can't get any help directly from Apple, since my laptop is over a year old. I doubt I would find tech help sophisticated enough anyway. Does ANYBODY have any suggestions? This is one of these maddening problems that can consume entire evenings. I wish I had never installed the latest security update.
    AL PB G4   Mac OS X (10.4.8)   1.5GB Ram

  • IChat AV after last security update

    it looks like that the last security update has made something to iChat. Everybody is having problems. My iSight in my iMac (updated) stopped streaming video in iChat after the update, while my Macbook (not updated yet) works perfectly. Any idea anybody?
    Thanks

    Let me be more specific about my problem. After the security update in my iMac C2D, every time I try to do a video conference through iChat with AIM buddies my image freezes when the conference starts.
    I can see and hear my buddies and they can hear me, but they don't see me. I see my image frozen. The iSight green light is on. iSight works ok with other applications and even with iChat before the conference starts.
    I don't have the problem with my Mackbook using iChat with the same buddies. I have not updated the Mackbook yet with the security update.
    I'm using a Bellsouth DSL modem connected to an Airport Express router. Both macs are using airport to connect to internet.
    Any ideas?
    Thank you!

  • My profile is "reset" after last security update.

    Hi,
    yesterday I applied last security update but without rebort right after that. Then later (very long) shutdown.
    Today started up, logged in and shocked - the profile is reset: desktop, all apps settings (as in "brand new" profile).
    Already tried: restart of the iMac, reparing permissins, but no success. Please help!

    Is nameCheck the name of the file?, an alias pointing to the file?, or a string representing the path to the file?
    If it's just a name then the script won't work because the Finder doesn't know where to find the file to move. Sure you might know the file is on the Desktop, but how does the Finder know that?
    What if there where 2 files on disk with the same name - which one would it move?
    In other words you need to be specific, like:
    set nameCheck to "somefile.pdf"
    tell application "Finder"
      move (file nameCheck of desktop) to folder myFolder
    end tell
    or maybe:
    tell application "Finder"
      set nameCheck to file "somefile.pdf" of desktop
      move file nameCheck to folder myFolder
    end tell
    It may be that earlier versions of AppleScript/Finder mistakenly assumed which file to moved based on its name only, but that is incorrect behavior.
    If my guess isn't right, then you need to provide more detail, such as the actual code that fails along with any error messages that you get.

  • Lost OS X after last security update

    G4 Yikes. OS X 10.3.x (8 maybe?) on one partition and 9.2.2 on another.
    So last week I used Software Update and d'led several updates, including the security update (which I heard has caused problems). During the install I got a gray screen, and the hard drive emittid a clicking sound (I thought it died). Thankfully I have been able to reboot to 9.2.2, but not OS X. I can no longer select OS X as the startup drive. I ran the disk utility from the 10.3 CD and from 9.2.2 but I can't repair OS X.
    However, when in 9.2.2, OS X is visibile and I can browse files, leading me to believe this is fixable.
    Is this related to permissions? How can I reset them? I tried to run the disk utility in OS X from 9.2.2 with no luck.
    Is there a way to delete or uninstall the last set of updates? Is there a way I can run command line instructions?
    This is getting frustrating. Any helps is appreciated.
    Thanks
    G4 Yikes   Mac OS X (10.3.8)   Also 9.2.2

    Hello Neal,
    This may help:
    The following was contributed by Fumiaki Kawashima.
    The error message, "Error: The underlying task reported failure on exit (-9972)" is a serious filesystem error in the Mac OS X Core Foundation. The problem can also lead to other critical errors such as "Keys Out of Order," "Invalid node structure" and/or "Invalid sibling link." The causes and scenarios vary. Troubleshooting a solution may depend upon computer configuration and whether the -9972 error is accompanied by other critical errors. This issue can also lead up to a kernel panic. If the error occurs when an external FireWire device is connected, disconnect it until you verify the device's compatibility.
    Symptoms:
    In most cases, you are unable to restart from Mac OS X.
    * A volume is grayed out or not mounted with or without a kernel panic.
     * A folder with a flashing question mark may appear.
     * A bad partition map may be reported.
     * A target disk mode solution may not work.
     * Most likely, Disk Utility, Norton Utilities, TechTool and DiskWarrior cannot fix the issues.
     * The high level disk format (Standard format) may unable to perform.
     * You may unable to re-initialize the hard drive.
     * A disk physically malfunctions in the worst case.
    Example of an accompanied error message:
    DiskWarrior normally fixes 1 to 6, but cannot fix errors 7 to 10 if the symptoms are very bad. There is no definite case.
    01. Volume check failed
    02. Invalid B-tree Header
    03. Invalid map node
    04. Invalid extents entry
    05. Invalid clump size
    06. Incorrect block count file
    07. Invalid node structure
    08. Overlapped extent allocation
    09. Keys Out of Order
    10. Invalid sibling link
    Possible causes:
    * Third-party FireWire device or enclosure, or other peripheral devices.
     * Third-party mass storage drives or PCI card issues.
     * Incompatible third-party kernel extensions.
     * Mac OS X installer disc is improperly treated.
    Solutions:
    If possible and needed, back up data before troubleshooting. Methods (4) and (5) are for Power Mac desktop computers other than G5 models. The best bet is method (4) if you encounter multiple bad errors.
    1. Unplug the power cord. Disconnect all third-party hardware except Apple keyboard and mouse before you start.
    2. Do NOT re-install any third-party software/hardware until you completely solve the issue(s) and carefully investigate the compatibility with Mac OS X 10.3.x you install.
    3. If another critical error "Invalid sibling link" is detected at any phases, disconnect and reconnect all internal power cords and data cables for hard drives and any ATAPI device. To do so, you may need to read the computer's CIP Instructions in advance. Normally, you do not need to remove third-party RAMs.
    Method 1:
    (1) Start up from Mac OS X 10.3.x Panther Full Install CD or DVD.
    (2) Re-initialize and re-partition the hard drive. RECOMMENDATION: Select "Zero all data" option if "Invalid node structure" or "Keys Out of Order" error is detected.
    If this method is of avail, go to Method 2 or greater.
    Method 2:
    (1) Start up in Mac OS 9.2.2 and shut down the computer.
    (2) Start up from a copy of a Disk Warrior bootable CD for Mac OS 9.2.2.
    (3) Run DW to fix the damage(s).
    Method 3:
    (1) Unplug the computer.
    (2) Find a second ATA drive and jumper it as MASTER. Jumper the hard drive in question as SLAVE. Verify the jumper pin settings.
    (3) Install Mac OS 9.2.x system on the MASTER drive, and update it to Mac OS 9.2.2.
    (4) Start up from Mac OS 9.2.2. Re-initialize and re-partition the damaged hard drive with Drive Setup using the "Zero all data" option. Unplug the computer and reconfigure the jumper pin setting on the repaired drive for MASTER and the second drive for SLAVE.
    (5) Restart from Mac OS X 10.3 Panther full install CD. Re-initialize and re-partition the repaired drive to install Mac OS X 10.3. Update to Mac OS X 10.3.7 via Software Update. Repair the disk permissions after each Mac OS X 10.3 installation and Mac OS X 10.3.7 update.
    You may want to try starting up from Mac OS 9.2.x Full Install CD instead of from (2) to (4).
    Method 4:
    (1) Find a desktop computer that has an ATA controller PCI card (SCSI environment) and has two hard drive bays. This will make your damaged drive appear as a quasi-SCSI hard drive. Mac OS 9.2.2 must be pre-installed on the computer. I recommend a host computer that installs an Ultra DMA/xxx or xxx (ATA-x) interface equal to or better than the damaged drive with backwards compatible.
    (2) Set the host computer's primary drive as MASTER and your damaged hard drive as SLAVE and install the damaged drive in the second drive bay of the host computer. Verify properly configured jumper pin settings in advance.
    (3) Start up the host computer from Mac OS 9.2.2. Launch the "Drive Setup" utility. Re-initialize the damaged disk on the second drive using the "Low level format" option. It may take hours but less than "Zero all data" option. Note: Normally, a low level format with a quasi-SCSI drive takes much less (30 - 40%) time than an ATA configuration drive. Note that "Low level format" fixes all difficult logical damage.
    (4) Put the fixed disk back in your computer's drive bay. Re-configure the jumper pin setting to MASTER before you place it into the drive bay of your computer.
    (5) Restart from Mac OS X 10.3 Panther full install CD. Re-initialize and re-partition it to install Mac OS X 10.3. Update to Mac OS X 10.3.7 via Software Update. Repair the disk permissions after each Mac OS X 10.3 installation and Mac OS X 10.3.7 update.
    Note that Panther's Disk Utility does not implement a "Low level format" option.
    Method 5:
    If Method 4 does not work or fix the damaged drive, let me know. You may need an advanced technique to fix it if the drive is physically not a problem.
    OPTION:
    Purchase a known good hard drive that conforms to your computer's ATA specification. Fix the damaged hard drive some other time. Nowadays, prices of hard drives are inexpensive.
    Mini 1.25, 512 AP/BT; 12 Al PB 1.5, 512 AP/BT   Mac OS X (10.3.8)   Wireless KB/Mouse, AEBS, 80 GB OWC FW HD

  • Can't access several websites after last security update

    Hello,
    After upgrading both my Macbook Air mid 2011 and iMac 2008 (with SSD) both running Mountain Lion 10.8.4 to the last security fix, I can't access from any of those two computers a variety of websites, for example:
    www.opennicproject.org
    www.gentoo-el.org
    www.adslgr.com
    These are only three. Almost half of Google's results are blocked. Using the terminal utility I am able to resolv some of them but not actually 'ping' them. I get no ping replies. I can access all these websites from other computers or devices (iPhone/iPad/Ubuntu desktop/WindowsXP laptop) on the same LAN. This problem exists only in the 2 macs  which are up-to-date. I am sure that this problem is related to latest security update I did a couple of days ago, to both computers.
    I'd like to know if anyone who have all patches installed up to the latest OSX version (mountain lion 10.8.4) has the same issues and can ping/resolv/access these websites.
    Note that although I can't access these websites directly using any direct network connection, I can access them using TOR browser bundle for mac, which means that something is going on at a computer level.
    I have checked so far:
    - Applicationn Apple's firewall is not creating the problem (disabled/enabled all)
    - ipfw/PF is not running with any ruleset
    - LittleSnitch blocks just a couple of annoying outgoing connections. Nothing there (I disabled/enabeld it, same thing).
    - Other computers access the websites/ping them/etc.
    - I can access websites using TOR.
    NOTE: It's not just 3 websites, it's something like 1 out of 3 DuckDuckGo links.
    Ideas and thoughts are welcomed!
    Best Regards,
    PA

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the malfunctioning extension by uninstalling and reinstalling it. That will revert its settings to the defaults.

  • Not able to connect to base station after last security update

    Since the lastest update came out, I am no longer able to connect to the same base station I was once able to connect to. I get my DSL through SBC, and the station is a 2Wire Gateway. My mac mini still is able to connect, since it didn't have the security update. Did this happen to anyone else when they got the airport update?
    Macbook   Mac OS X (10.4.8)  

    I've got a similar problem. After the "AirPort Extreme Update 2007-001" was installed, i am only able to surf for approximately 30 minutes. Then my connections to the Internet stops working. When I disconnect and reconnect to my Accesspoint, my MacBookPro is unable to get an IP over DHCP. If I manually type an valid IP, the System Settings show that my Airport is connected to the Accesspoint and has connection to the Internet but it still doesn't work. The only thing that helps is to go in the "sleep mode" ("ruhezustand"), when i wake up my MBP i am able to surf for further 30 min, but even this doens't work always. When I tested the connection to the accesspoint under windows on the MBP everything worked fine.

  • After last security update script broke

    Hello,
    I've written a script that processes Photoshop files into a single pdf and names the file based on our corporate standards. It then moves the file from the desktop into the appropriate folder. Both the pdf document and the folder that it's being moved to are assigned to variables. The pdf document is nameCheck and myFolder points to the correct folder. I've checked the veracity of the variables with a return statement after they've been assigned. However, the script hangs on this line. This didn't happen until I did the last batch of security updates.
    move file named nameCheck to folder myFolder with replacing --This used to work (I've also tried this without "with replacing" and still it wouldn't work)
    I wrote a small test script to see if moving files wasn't allowed (that would be foolish) and it works:
    tell application "Finder"
    make new file at desktop with properties {name:"myNewDoc"}
    set docToMove to file named "myNewDoc" as alias
    set toFolder to folder "PDFs" of desktop as alias
    move file docToMove to folder toFolder
    end tell
    Any ideas? Anyone?
    Thanks!
    -Zoar

    Is nameCheck the name of the file?, an alias pointing to the file?, or a string representing the path to the file?
    If it's just a name then the script won't work because the Finder doesn't know where to find the file to move. Sure you might know the file is on the Desktop, but how does the Finder know that?
    What if there where 2 files on disk with the same name - which one would it move?
    In other words you need to be specific, like:
    set nameCheck to "somefile.pdf"
    tell application "Finder"
      move (file nameCheck of desktop) to folder myFolder
    end tell
    or maybe:
    tell application "Finder"
      set nameCheck to file "somefile.pdf" of desktop
      move file nameCheck to folder myFolder
    end tell
    It may be that earlier versions of AppleScript/Finder mistakenly assumed which file to moved based on its name only, but that is incorrect behavior.
    If my guess isn't right, then you need to provide more detail, such as the actual code that fails along with any error messages that you get.

  • AppleScript problems after last security update

    I have to do most of my work on the Mac by speech input, due to arthritis in my hands. This means I rely on AppleScript "programs" to give me short cuts which make life easier. After I installed Security Update 2007-4 I had to re-install some of these programs and found that a few of them no longer work. For example the script below, which should turn off automatic email checking. NB I use MailSmith - and this worked before the Security Update.
    tell application "Mailsmith"
    get «class AcAc»
    if result is true then
    set «class AcAc» to false
    end if
    end tell
    Now produces a box on the screen containing:
    "Applescript could not compile because
    4Can't set «class AcAC» to false. Access not
    allowed.." (sic)
    Someone tell me what's going on with this, please?
    Cheers,
    Dave

    The script is wrong. Where you see the word "class" in your script, put "property" instead. Now start up Mailsmith and try to recompile the script. It should work.
    Alternatively, rewrite the script like this:
    tell application "Mailsmith"
    get its auto checking enabled
    if result is true then
    set its auto checking enabled to false
    end if
    end tell
    The "its" is crucial for distinguishing a property from a class.

  • Browser problems after last security update

    In Safari and in Firefox I have been having random odd problems the past few days since doing all the auto security updates. For example, pdf links never load and therefore cannot be viewed. On bn.com, specifically, it keeps looping back to a "no results" screen no matter where I've been or where I'm going to. I'm hoping that one is just a bn.com problem, but it's disturbing that on more than one web site I am unable to click links I otherwise used to be able to and view, i.e. pdf links. Any clue?

    The script is wrong. Where you see the word "class" in your script, put "property" instead. Now start up Mailsmith and try to recompile the script. It should work.
    Alternatively, rewrite the script like this:
    tell application "Mailsmith"
    get its auto checking enabled
    if result is true then
    set its auto checking enabled to false
    end if
    end tell
    The "its" is crucial for distinguishing a property from a class.

  • JDownloader broken after last security update

    It ran successfully for 3 weeks and began refusing to load any menus after the most recent Apple update.
    I got it to launch once by double-clicking the .jar file; since then only "the java .jar file could not be opened, see console etc."
    d/l and reinstall produces the same result.
    Ideas?

    As it turns out it's a bug w/the latest Security update; seems it breaks a lot of java apps.
    Mysteriously, it's now working. I had to launch it via the .jar file but since doing that once it now launches via the app icon.
    FIWI, it's open source and the ticket I filed has yet to be responded to.
    Thanks for your comeback.
    Message was edited by: mhale62

Maybe you are looking for

  • SLD in SAP XI

    Hi I am planning to isntall XI. Can anybody tell me the special considerations while installing. I do not have separate SLD Configured. Thanks in advance

  • RemoteApp receives multiple KeyUp events without any keys being pressed

    Hi All, I have a very simple winforms app that I am using to try and track down what is happening with keyboard events when using RemoteApp. Basically I have a form and a textbox that track the KeyDown, KeyPress and KeyUp events. As soon as I start m

  • Web Page  Composer Questions

    Hey again Im new to web page composer so here are some questions that i cant seem to find a proper answer to: 1- Im using  a Framework witch have two zones:                  Header Component - Normal Iview                  Content Area - witch change

  • Configuring CISCO AIRONET AP

    Hello; how to configure the IP Adress of CISCO AIRONET 1600i AP to access It through the Web browser and configure It? we tried to assign a static IP using CLI so we downloaded Tera Term and tried to connect It using the DB Cable. The following messa

  • SCSI to USB2 or Firewire converter?

    I got my wife a mini and would like to connect her large format Epson scanner to it, but it has a SCSI connector. I see a lot of converters out on the market but am not sure which I should get. They run from very cheap to very expensive and some say