HT1338 Error Displayed on clicking 'Update' for Safari update.

I am geting the following error on clicking the Update button for the safari 6.0.2 software update
The operation couldn’t be completed. (NSURLErrorDomain error -3001.)(102)

Install > http://swcdn.apple.com/content/downloads/53/02/041-8081/2jwp4wjrwygtm4lc608qy4h0 n4a9yyq37g/Safari6.0.2Mountain.pkg

Similar Messages

  • Error message when clicking "Update" in the server options on ServerManager

    Hello,
    I have a strange error message when I want to modify the server options through the Server manager component (BPC for MS 7.0 SP5).
    Here is the error message :
    "Cannot update server options.
    Err: Cannot connect to the web server registry. Make sure the [Remote Registry]service on the Web server has been started.
    To check the [Remote Registry] service, go to Start/Settings/Control Panel/Administrative Tools/Services."
    I checked the service mentionned in the message, nothing to be signaled : the service is running, I tried to restart it and test again but the error message still remains.
    In fact, as we are in a BPC Server loadbalancer environment (2 BPC servers), we enter (try to enter), the virtual host name of the NLB in the fields (External Server Name, Application Server Name etc...), and we noticed that if we enter the physical Server names in the fields, the Update works fine !!!
    As soon as we try to fill the NLB virtual name -> error message with the update.
    As workaround, we updated the server information directly in the tblserverinfo sql table. Once done, the NLB with BPC works perfectly.
    Do you have an idea about this error message ?
    Thank you very much in advance.
    Kind regards,
    Lionel

    Hi,
      External server name is used only in case you have users who access the BPC outside LAN. In this case the external server name should contain the virtual name which is visible for those users.
       Scheduler server is the server used to schedule the BPC jobs (windows jobs are created into Windows scheduled tasks).This parameter should be the name of one application server(not NLB)
       Regarding Server Manager, it is true that it is increasing the number at the end of parameter and saving all the values. This was created by design. Normally the last value saved is used(the bigger number),
    Hope this can help you,
    Mihaela

  • HT1338 Error when trying to update Safari to version 6.0.2

    When trying to update Safari to verison 6.0.2 I get this error: <The operation couldn’t be completed. (NSURLErrorDomain error -3001.)(102)> Any idea what the issue is?

    Hi,
    I had the same problem - so try this instead, that help me.
    - direct download & update... !
    http://swcdn.apple.com/content/downloads/53/02/041-8081/2jwp4wjrwygtm4lc608qy4h0 n4a9yyq37g/Safari6.0.2Mountain.pkg

  • Error message upon clicking "Check for Update" for iPhone

    Message: *iTunes cannot connect to iPhone software update server because you are not connected to the Internet.* Make sure your internet connection is active and try again.
    This repeatedly shows up all the while iTunes store seems to connect just fine to the Internet. Please assist, Thank you.

    Hello rufaroan,
    Are you connected to the internet via your iPhone if you are updating though the air. try turnning your iPhone off and on again. Then make sure that you are connected to the internet than try it again.
    Thank's for your time.
    Apple Support Communities.
    Robbieeeee

  • Two clicks required for Safari window which is not currently the focus

    This is really starting to annoy me - I have a 17" powerbook so I can display two webpages side by side. I click on a link in one page and... ...nothing happens. If this page was not the current focus, my first click just changes the focus - i then have to click again to go to the link. Many times i sit there waiting for the display to update, only to find that it is not going to because it requires another click... Is there any way to make Safari take action on the first click on a window not currently in focus?

    I don't know of any way to allow this.
    Mail works the same way.
    using mail & safari windows side by side does the same, as does anything(?) that involves switching applications.
    It's just the links in safari that require one click to focus then one to activate - running two safari windows & clicking something in the toolbar or bookmarks bar on the 'other' window works just fine. As does clicking a 'button' within the page (like 'post message' on these boards,for example)
    I can only suggest letting Apple know what you think at http://www.apple.com/macosx/feedback/

  • HT1338 Error 103 App Store Update Mountain Lion

    I keep getting "error 103" when trying to install the iPhoto and iMovie update that comes up
    on the App Store as soon as you upgrade to Mountain Lion (from Lion on a MBP mid-2009).
    How can I fix this?
    Thanks.

    I had the same problem, which may arise from having multiple "stacked" updates available—Mountain Lion 10.8.1, iMovie, and iPhoto.
    This resolved it for me:
    1.     Under Software Update, click "Show updates."
    2.     In the update window, click "More ...", which shows all updates available (in my case 3), and lets you install them seprately;
    3.     Install the 10.8.1 one first, letting the computer restart;
    4.     Repeat the process to install the remaining ones.
    After you install 10.8.1, you may be able to install the remaining ones together, but I did them separately. Each of them is a long download.
    Derek

  • HT1338 Error message with iphoto update

    I just got a macbook pro with retina display, every time I try to update iPhoto I get an error message "iPhoto failed to download: use the purchases page to try again", I do as I told and yet I get the same error message. Can anyone help?

    If you're having problems with the App Store you might try this:
    1 - enable the Debug menu in App Store:
    open the Terminal application.
    copy the command below and paste into the Terminal window:
    defaults write com.apple.appstore ShowDebugMenu -bool true
    followed by Enter.
    launch App Store, login.
    2 - select the Debug ➙ Reset Application option:
    3 - try again.
    OT

  • How to display right-click menu for JPanel?

    Hi...
    I am developing an application to display a JWindow in the screen along with a TrayIcon in the system-tray area. There should be a right-click menu in both the tray icon and JWindow for further options.
    I am able to create a JPopupMenu for tray icon. On right-clicking on the tray icon, the menu is being displayed. But not able to do the same for the JWindow. I am able to capture the right-click mouse event, but not able to display the menu.
    This is how I am displaying the menu for the tray icon
    PopupMenu  popupmenu = new PopupMenu();
    MenuItem  menuitem1 = new MenuItem("Exit");
    menuitem1.addActionListener(new ActionListener()
        public void actionPerformed(ActionEvent exx)
            System.exit(0);
    popupmenu.add(menuitem1);
    trayicon = new TrayIcon(Toolkit.getDefaultToolkit().getImage("./images/Icon.gif"),"Right-click for more options",popupmenu);For displaying the menu in the JPanel, I am using the following snippet...
        public class MyMouseListener extends MouseAdapter
            public class MyMouseListener() {}
            @Override
            public void mouseClicked(MouseEvent e)
                if (e.getButton() == MouseEvent.BUTTON3)
                   System.out.println("Clicked");
                   jp.setComponentPopupMenu(popupmenu);
        }Can anyone please help me to do this??
    Thanks in Advance...

    Hi,
    PFA the code I am using...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class DisplayStrip extends JWindow implements MouseListener, MouseMotionListener
         Point location;
         MouseEvent pressed;
        JPanel jp ;
        JLabel jl ;
        JPopupMenu popupmenu ;
         public DisplayStrip()
              addMouseListener( this );
              addMouseMotionListener( this );
         public void mousePressed(MouseEvent me)
              pressed = me;
         public void mouseClicked(MouseEvent e) {}
         public void mouseReleased(MouseEvent e) {}
         public void mouseDragged(MouseEvent me)
              location = getLocation(location);
              int x = location.x - pressed.getX() + me.getX();
              int y = location.y - pressed.getY() + me.getY();
              setLocation(x, y);
         public void mouseMoved(MouseEvent e) {}
         public void mouseEntered(MouseEvent e) {}
         public void mouseExited(MouseEvent e) {}
         public void DisplayStripRun()
              setSize(100, 10);
              setAlwaysOnTop(true);
            jp = new JPanel();
              jp.setBackground(Color.GREEN);
              jp.addMouseListener(new MyMouseListener());
              jl = new JLabel();
              jl.setText("Right-click Here");
              jp.add(jl);
              add(jp);
              setVisible(true);
              pack();
              popupmenu = new JPopupMenu();
              JMenuItem menuitem = new JMenuItem("Exit");
              menuitem.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent exx)
                        System.exit(0);
              popupmenu.add(menuitem);
         public static void main(String args[])
              DisplayStrip ds = new DisplayStrip();
              ds.DisplayStripRun();
        public class MyMouseListener extends MouseAdapter
            //public class MyMouseListener() {}
            @Override
            public void mouseClicked(MouseEvent e)
                if (e.getButton() == MouseEvent.BUTTON3)
                   System.out.println("Right clicked");
                   jp.setComponentPopupMenu(popupmenu);
                   popupmenu.setVisible(true);
    }

  • Keep getting error message Adobe reader plugin for safari

    I keep getting an error message saying that Adobe REader has detected Missing Components that require repair. etc. Ask to select components I would like to repair but the message freezes solid and I can't even force quit it.
    Anyone else seen this?

    HI,
    Launch Adobe Reader. From the Menu Bar click Help/Repair Adobe Reader Installation.
    If you still have problems, go to ~/Library/Preferences and move the com.adobe.Reader.plist file to the Trash, then try the Help/Repair Adobe Reader Installation again.
    Carolyn

  • Hi guys, I have a problem with my new macbook pro 15". I tried to updtate the apps (iPhoto, iMovie and Garageband), but an error was displayed "You have updates available for other accounts". I don't have other accounts!!! :(

    Hi guys,
    I have a problem, I have a new macbook pro. I updated the software without problems; then I tried to update iPhoto, iMovie and Garageband, but an error was displayed "You have updates available for other accounts". I don't have any other account, i tried everything found on the net but nothing seems to work...Please help me!!!!

    Same thing for me it writes "To update this application, sign in to the account you used to purchase it."

  • I get this error "The operation couldn't be completed. (NSURLErrorDomain error -3001.)(102)" when trying to latest mountain lion updates (for safari and RAW) on macbook pro running osx 10.8.2

    I am trying to update the latest patches for safari and RAW, however I get the following error "The operation couldn’t be completed. (NSURLErrorDomain error -3001.)(102)" is anyone else having the same issues? I am currently running Mountain Lion 10.8.2

    IDEM  problem... grrrrrrrrrrrr  
    MacBook Pro OS X Mountain Lion 10.8.2 (12C60)
    I have found this link...
    http://9to5mac.com/2012/11/01/apple-updates-safari-6-0-2-iphoto-9-4-2-and-apertu re-3-4-2/

  • After deleting i tunes because of an error when updating, i cannot install 10.6 on my win vista laptop. when i select download, it loads for 3 secs then displays... thankyou for downloading but nothing has happened

    after deleting i tunes because of an error when updating, i cannot install 10.6 on my win vista laptop. when i select download, it loads for 3 secs then displays... thankyou for downloading but nothing has happened

    Try downloading it with another browser.
    If that doesn't work, try following along with this Apple article -> iTunes: Downloading iTunes for Windows using Internet Explorer

  • When I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630

    when I click on check for update I get error, iTunes could not check for an update to the carrier settings for your iPhone. an unknown error occurred 1630
    Make sure your network setting are correct and your network connection is active or try again latter.

    update your itunes to 10.5.2 and error is not showing up anymore..

  • HT1338 The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    The Mac App Store shows an update available for iMovie but when I click "update" it gives me this message, "The product distribution file could not be verified. It may be damaged or was not signed." What can I do to update this program?

    http://www.apple.com/support/mac/app-store/contact.html?form=account

  • HT1212 I am unable to get our of a continuous cycle when trying to update or restore my iPad 2. Plug in to iTunes 12.0.1 (latest version). Click update, told can't update, have to restore. Restore fails with error 9. Any help appreciated.

    When I tried to update my iPad I got an error 9. Now, I am unable to access my iPad. It is in a continuous cycle when I try to update or restore the iPad 2. Plug in to iTunes 12.0.1 (latest version). Click update, told can't update, have to restore. Restore fails with error 9. Any help appreciated.
    Here's the cycle:
    I plug in my iPad when “cable to iTunes shows on iPad screen. It says "Your iPad can't be updated, you must restore it to factory settings." That bad enough news, but it gets worse.
    Click Restore
    Extracting software…
    Preparing iPad for restore
    Waiting for iPad…
    Verifying iPad restore with Apple…
    (empty bar under the Apple logo…does not show any activity)
    “The iPad “iPad” could not be restored. An unknown error occurred (9).”
    Notes: I just upgraded to OS X Yosemite 10.10.1 on my iMac (27-inch, Mid 2011) in the last week. It’s the first time I’m tried to backup/update my iPad since the iMac update.
    I swapped out the USB cable to a new cable and get the same results.
    I also unplugged all other USB devices from the iMac and security on my iPad and still get the same results.
    I find it strange that it shows no Serial number for my my iPad 2 when plugged in. It shows “Serial Number: n/a on the screen when it displays: “iPad Recovery Mode To update your iPad without erasing its contents, click Update. To restore your iPad to its factory settings, click Restore iPad.
    I prefer to update my iPad, but it displays “Your iPad can’t be updated, you must restore it to factory settings. If you previously backed up the iPad, click Restore Backup after the restore process completes.”
    It’s a continuous loop. I get the display on my iPad to plug in the iPad to iTunes, plug it in which ends after going through the above procedure saying an error occurred (9).
    So now I cannot use my iPad. When I turn it on I get the display showing me to plug it into iTunes with the cable. Since this is the only option I have I plug it in and the loop begins.
    Any advice would be appreciated.
    Thanks!

    Hello jaybearden,
    Thanks for the question. After reviewing your post, it sounds like you are not able to restore the iOS device since you get an error 9. I would recommend that you read this article, it may be able to help the issue.
    Resolve iOS update and restore errors - Apple Support
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • Displaying the correct value of Y in page X of Y when running a batch

    Hi There Does anyone know how I can re-set the Y of page X of Y in the footer for each PO when running a batch? I am using <?for-each@section:G_HEADERS?> which is working great for each PO - re-setting the PO number in the header and re-setting the X

  • 12 inch G4 PB firewire crash

    I just updated my PB to Tiger. Used to back up to a firewire drive no problem. Now when I plug in the drive or start with it plugged in the system crashes. When I unplug and restart it's ok. The same rive works fine when plugged into my G5 running th

  • WDS Image deployment with updates applied

    Hi All, Is it possible to capture an image which has windows updates included?  I am currently building a number of machines for rollout and having to wait for 115 updates to be applied to each. I have captured a .wim image and is sitting in captured

  • I can't get my mail to open on my mac, I have Lion installed, ical and safari are working

    I can't get my mail to open on my mac, I have Lion installed, ical and safari are working

  • Object FollowerI

    I am making a flash game using actionscript 2 and need a symbol to 'follow' another on the y axis. I have used this code onClipEvent (load) {   _y = 0;   speed = 5; onClipEvent (enterFrame) {   endY = _root._ymouse;   _y += (endY-_y)/speed; But am un