Installation of Safari for Windows 5.1.7 fails

I have been setting up a new PC with Windows 7 (64-bit Home Premium). I have gotten QuickTime (32-bit) 7.7.3 and iTunes (64-bit) 10.6.3.25 installed apparently successfully (at least, iTunes works). But the Safari for Windows 5.1.7 installer gives the error message "This installer is intended for 32-bit versions of Windows.  Please obtain the 64-bit installer from http://www.apple.com/support/downloads/bonjourforwindows.html." and will not finish. I downloaded and apparently successfully installed Bonjour Print Services for Windows 2.0.2, but Safari still will not install. Does anyone have advice about how to get past that error?

For anybody following the question posted here in this Community: I also posted my question in a different Community, where I received one reply and have posted updates:
https://discussions.apple.com/message/20534176#20534176
Nothing I have done has been successful, however, so Safari 5.1.7 for Windows could not be installed.

Similar Messages

  • Receive message when downloading ITunes or Safari for Windows 7 64 Bit.  "Installation package could not be opened. Verify package exists or contact application vendor to verify this is a valid Windows Installer package."

    Received message when trying to install Itunes or Safari for Windows. " Installation package could not be opened.  Verify package exists or contact application vendor to verify this is a valid Windows Installer package". 

    I to am having the same issue. I have a admin account and logged into it as well and still have the same message pop up. Contacted live support the woman i spoke with had to send it up higher. We went through every thing including her trying (taking over as a host on my laptop) still have not bee contacted this June will be a year that i have heard nothing from them sine She di everything she could and pushed it up higher.

  • Safari for Windows - Downloading application problems

    Hi
    Everytime I try to download Safari for Windows all I get is a small file of 4k, called SafariSetup.exe.
    Seems to be an incomplete download.Tried on my MacBook and my PC same result. Is there a problem with the download? Tried in safari mac, opera, firefox and google chrome.

    Everytime I try to download Safari for Windows all I get is a small file of 4k, called SafariSetup.exe.
    That's the right filename, but certainly the wrong file size for a Safari Installer.
    How are you connecting to the internet with the MacBook and the PC, Mark?
    For example, my Lenovo T61 is connecting wirelessly to a LinkSys WRT54G wireless router that is plugged into a Motorola SB5100 Surfboard cable modem.
    What sort of setup do you have?

  • Very poor implementation of XMLHttpRequest streaming with Safari for Window

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used. Do not hesitate to contact me with any questions. I have implemented a test to compare XMLHttpRequest streaming performance for different browsers. Safari for Windows 5.0.3 had the worst results compared to Chrome and Firefox. Furthermore, I think this problem was introduced after Safari 3. The test consists of a server pushing messages of about 350 bytes to the browser at a rate of about 300/s. Once server pushes 10,000 messages, it closes the connection and browser opens new one repeating the cycle. There were several problems associated with Safari: 1) Safari could not process much more then 300 messages/s, that is quite low. Chrome had no problem processing 1,000. If, for example, 500 m/s was used, Safari would quickly allocate hundreds of meg of memory and crash. 2) Safari starts with about 64MEG of memory allocated. Once the test page is opened, memory quickly climes to 150MEG and as test progresses to >400MEG. Once the connection closes, it drops to 150MEG again. Chrome's memory did not fluctuate at all staying at 32MEG for the same test. 3) CPU was steadily claiming as test progressed and then dropped as connection was reset, creating CPU spikes. It reached about 50% CPU before connection was closed. Chrome's CPU stayed at about 2% all the time. This is the code: Server. Should be run with the latest Java Tomcat 7. Configure Tomcat to use Http11NioProtocol: package test; import java.io.IOException; import java.io.PrintWriter; import java.text.SimpleDateFormat; import java.util.Date; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.comet.CometEvent; import org.apache.catalina.comet.CometProcessor; @SuppressWarnings("serial") public class WebFrameworkServletXHRReconnects extends HttpServlet implements CometProcessor { @Override public void event(CometEvent event) throws IOException, ServletException { HttpServletRequest request = event.getHttpServletRequest(); HttpServletResponse response = event.getHttpServletResponse(); if (event.getEventType() == CometEvent.EventType.BEGIN) { System.out.println("Begin for session: " + request.getSession(true).getId() + " " + response.getWriter()); response.setHeader("pragma", "no-cache,no-store"); response.setHeader("cache-control", "no-cache,no-store,max-age=0,max-stale=0"); event.setTimeout(Integer.MAX_VALUE); PrintWriter out = response.getWriter(); SimpleDateFormat formatter = new SimpleDateFormat("mm:ss: "); for (int i = 0; i < 10000; i++) { out.print("{\"messageType\":8448,\"requestId\":"0",\"eventType\":1,\"symbolId\" :[\"BAC.EA\",0],\"fields\":[{\"header\":"0",\"type\":6,\"data\":[3993,2]},{\"hea der\":"55",\"type\":6,\"data\":[1185,2]},{\"header\":54,\"type\":6,\"data\":[321 8,2]},{\"header\":"5",\"type\":6,\"data\":[6617,2]},{\"header\":52,\"type\":4,\" data\":[15]},{\"header\":"12",\"type\":6,\"data\":[1700,2]}]}"); out.flush(); if (i % 10 == 0) { try { //Thread.sleep(60); Thread.sleep(30); } catch (InterruptedException e) { } } if (i % 100 == 0) { System.out.println(formatter.format(new Date()) + i); } } out.close(); event.close(); } else if (event.getEventType() == CometEvent.EventType.ERROR) { event.close(); } else if (event.getEventType() == CometEvent.EventType.END) { event.close(); } } } client: <script type="text/javascript" src="log4js.js">
    </script>
    <script type="text/javascript">
    var api;
    var log = new Log(Log.DEBUG, Log.popupLogger);
    var byteoffset;
    var perocessedMessages;
    function connect() {
    perocessedMessages = 0;
    byteoffset = 0;
    id = 0;
    api = new XMLHttpRequest;
    api.onreadystatechange = onreadystatechange;
    api.onerror = onerror;
    log.debug('connect');
    api.open("GET", "http://localhost/Test/Controller", true);
    api.send("");
    function onreadystatechange() {
    switch (api.readyState) {
    case 3:
    change();
    break;
    case 4:
    disconnect();
    break;
    function change() {
    connected = true;
    var buffer = api.responseText;
    var newdata = buffer.substring(byteoffset);
    byteoffset = buffer.length;
    while (1) {
    var x = newdata.indexOf("<activ>");
    if (x != -1) {
    y = newdata.indexOf("</activ>", x);
    if (y != -1) {
    processMessage(newdata.substring((x + 7), y));
    newdata = newdata.substring(y + 8);
    else {
    break;
    else {
    break;
    byteoffset = buffer.length - newdata.length;
    function processMessage(msg) {
    var objJson = eval('(' + msg + ')');
    perocessedMessages++;
    //if (perocessedMessages % 100 == 0) {
    // log.debug('' + perocessedMessages);
    function disconnect() {
    log.debug('disconnect');
    connect();
    function onerror() {
    log.debug('onerror');
    </script>

    I hope this post reaches Apple engineers. This is critical for us to resolve this. I am a member of the developer network, so if using incident support is necessary, it can be used.
    We're a user-to-user forum, ilyag. So it'd be better for you to use the Apple Bug Reporter if you want to ensure someone from Apple sees your post:
    http://developer.apple.com/bugreporter/

  • Safari for Windows crashes when I try to import bookmarks

    Hi everybody!
    I'm trying to import my mozilla firefox bookmarks into Safari for windows 5.1.7... (running on Windows 7 Professional SP1)
    So I exported it from Firefox bookmarks menu, and then go to Safari > File > IMport Bookmarks
    Then error occurs: It opens a dialog box to choose the html file with the bookmarks wanted, and after a few mileseconds... it crashes!
    I receive this screen/dialog box:
    When i go to error console, to get the error message, i found this:
    Assinatura do problema:
      Nome do Evento de Problema:    APPCRASH
      Nome do Aplicativo:    Safari.exe
      Versão do Aplicativo:    5.34.57.2
      Carimbo de Data/Hora do Aplicativo:    4f982b5e
      Nome do Módulo de Falhas:    CoreGraphics.dll
      Versão do Módulo de Falhas:    1.87.0.0
      Carimbo de Data/Hora do Módulo de Falhas:    4f9739a0
      Código de Exceção:    40000015
      Deslocamento de Exceção:    0013a762
      Versão do sistema operacional:    6.1.7601.2.1.0.256.48
      Identificação da Localidade:    1046
      Informações Adicionais 1:    6771
      Informações Adicionais 2:    67715460e11cf4d8a3ceaf4d49ffdca1
      Informações Adicionais 3:    ab8e
      Informações Adicionais 4:    ab8ec1bd3e08be819760b14cdc014550
    Leia nossa declaração de privacidade online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0416
    Se a declaração de privacidade online não estiver disponível, leia nossa declaração de privacidade offline:
      C:\Windows\system32\pt-BR\erofflps.txt
    Anyone already pass throuhgt this error or know how i fix it?
    Thanks in advance.
    Paludo
    Natal-RN-Brazil

    Hi ..
    Apple has dropped support for Safari for Windows.
    Use IE or Chrome Browser
    Apple apparently kills Windows PC support in Safari

  • Looking for a high-contrast extension for Safari for Windows

    First of all,what do we call them - extensions or plugins?
    Is there an extension for Safari for Windows for high-contrast? I can't find one anywhere. Windows 7 is set to a HC theme. IE just follows suit. Chrome detected this, ad offered to install a theme.
    Don't know why, but I still prefer Safari on my Win7 system. But really need HC. One that just inverts the colors would work, but one with several other options like the Chrome extension would be better.
    A Link! A Link! My kingdom for a Link!

    Apple has dropped support for Safari on Windows

  • Safari for Windows 7 - Where can I get a safe download?

    I want to download Safari for my Windows 7 PC.  I cannot find 5.1.7 on the Apple website.  Is that the one that I should be looking for?  If so, where can I get a download of it that won't include a bunch of garbage.
    Or, if there is a version that I can download from Apple, which version should I choose? 
    A hyperlink would be greatly appreciated.

    Safari for Windows was discontinued a couple years ago.  By now it's outdated, not standards compliant, etc..  There's no reason why you should use it. 

  • IPhone 4 AirPrint printing issue (AirPrint Installer 1.3 for Windows)

    I have been trying to get AirPrint working on my iPhone 4 (CDMA/Verizon) for a while now without success
    I know that the AirPrint feature is designed to work with AirPrint compatible HP WiFi printers (as Apple dropped support for OS X), though I have no plans on buying a new printer when I have 2 perfectly fine printers shared on the network, let alone one specifically designed to work with AirPrint
    I have tried out AirPrint Installer 1.3 for Windows (running on WinXP MCE 2005), but can't seem to get it to work properly
    After installing AirPrint Installer, I was able to see one printer from the iPhone (from a laser printer shared from another computer on the network), and was able to send a print command from the iPhone to the XP MCE computer, but I kept getting "Error-Printing" from the print que (on XP MCE)
    After sharing a printer connected locally (via USB), I was able to print from my iPhone once successfully, but nothing from the iPhone would show up in the que on XP MCE since
    Since then I have also shared the Microsoft XPS Document Writer (saves "printed" documents to an XPS file) as a way to tinker around with AirPrint without wasting paper, ink, and/or toner, and was unable to print from it
    Now whenever I attempt to print from my iPhone, I have the option of 3 printers, the shared laser on a different computer on the network, the local inkjet via USB, and the Microsoft XPS Document Writer, selecting any of them will then give me a message with an image of a piece of doggy eared paper saying "Printing to "<Printer Name>" Sending to Printer" as if it's about to print, but there is no change on XP MCE, the print cue shows nothing, and nothing prints and I don't get a popup asking where I would like to save (when using the XPS Document Writer), yet I can print fine from the computer itself
    Also, I have noticed that after a while, the printers will disappear from the list (on the iPhone) one by one, and I have to constantly uninstall and reinstall AirPrint Installer, only for it to not work again
    Am I doing something wrong? I have updated iTunes, I don't have a software firewall, and I am pretty sure I have installed AirPrint Installer 1.3 correctly
    I have also tried using AirPrint Activator and AirPrint Hacktivator on my MBA, but I only have Leopard on it (haven't upgraded to Snow Leopard yet, and may not for a while), so AirPrint Hacktivator will close unexpectedly (constantly), and AirPrint Activator gives me an error saying I need at least Snow Leopard, so I would really appreciate it if I could get AirPrint Installer 1.3 to work

    I have been having exactly the same problem as Mike's original problem as well as this problem as well. Originally, i couldn't get the iphone to see all my shared printers. I have an Epson RX580 ink jet all in one printer and a HP P1006 laser jet printer. They are both shared printers. Both are able to be printed to from other wired and wireless computers in my network. They are both showing as ready when I look at them in the printer/fax window.
    I'm using Window's XP SP3 with all the latest updates. I originally down loaded a german version of this AirPrint Installer 1.3. It didn't have all the bells this version does. After DL'ing this version AirPrint Installer 1.3, My Verizon Iphone 4 with 4.2 OS could see the printers on my network.
    When I try to print an email or picture. I takes me to the screen on the iphone to choose the printer I want to use. When I choose either printer and click the "Print" button, it takes me to a screen that says "Communicating with Printer" with an image of a page of paper with the edge turned down. After about 30-45 seconds the screen reverts back to the email or picture. After another min or so, a message will pop up saying that the printer is offline with one button that says cancel and another button that says continue.
    If I look at the print que for the printers, there is nothing in the que, but when I high light the printer in the printer/fax window some extra options become available that aren't there if there are really no jobs in the cue. One of the options on the left is the option to cancell all print jobs. When I click this, the computer looks like it does something cause the screen kind of flickers and then the option dissappears.
    I would really like to be able to print pic's straight from my iphone and would love to get this working. Would really appreciate any help with this issue.

  • How do I update or download the latest version of safari for windows xp

    How do I update or download the latest version of safari for windows xp

    Safari for Windows version 5.1.7 is the latest version available for Windows.
    http://support.apple.com/kb/dl1531
    For more on this:
    http://www.macworld.com/article/1167904/safari_6_available_for_mountain_lion_and _lion_but_not_windows.html

  • Can't open pdf files in Safari for Windows

    Hi, I haven't been able to open pdf files in Safari - each time I click on a pdf link, a new tab opend and then a pop-up window says "can't open Adobe" (or something like that), and then Safari crashes. I've read that the solution is to install Adobe Reader 8, but I can't because I already have Adobe Acrobat which doesn't seem to work with safari. Does anyone know a way to view pdf files in Safari for windows?

    Try to uninstall and after that install Acrobat Reader 8 again.

  • Trouble with PDF files in Safari for Windows

    I downloaded Safari for Windows at work on my XP machine because I much prefer the Safari interface. The problem that I am having is that one of the web-based programs that I use at work does reports in PDF format and when I click on the link for a report Safari is popping up a window that says the document doesn't exist. Of course, the document does exist and my Internet Explorer and Safari for Mac that I have at home both view these reports with no problems through Safari. I have the most up to date version of Adobe Reader 8, and when I check the installed plugins through the help menu on Safari it shows that the Adobe plugin is installed. So, I have no clue how to get this to work, but if I can't get it fixed soon I'm gonna have to switch back to Internet Explorer (which I don't want to do). Can anyone help???

    Try to uninstall and after that install Acrobat Reader 8 again.

  • How do you change the language of the dictionary on Safari from English (US) to (UK)? I'm using Windows 7 Home Premium and the latest version of Safari for Windows that I know of. Cheers in advance

    How do you change the language of the dictionary on Safari from English (US) to (UK)? I'm using Windows 7 Home Premium and the latest version of Safari for Windows that I know of. Cheers in advance

    92matt wrote:
    Cheers for the quick response, but do you know whow I would do that?
    Apologies I'm not the most technical of people!
    Open Regional and Language Options by clicking the Start button , clicking Control Panel, clicking Clock, Language, and Region, and then clicking Regional and Language Options.
    Lupunus

  • Open .pdf in safari for windows

    Help with opening a .pdf file in Safari for windows.

    Try to uninstall and after that install Acrobat Reader 8 again.

  • Need Help with safari for Windows 8

    i am stuck with the need to have a pc due to a proprietary business software... I am a mac user and prefer to use safari... i just had to by a new pc and tried to download safari for windows 8.1 but cannot find it... any help out there?

    Apple hasn't supported Safari for Windows in quite a while (and even when they did, you wouldn't want it - total crap). IE 11 actually isn't bad, you can also try Chrome.

  • How do I view pdfs in Safari for Windows?

    Have to use Windows 7 at work. Fortunately, I can at least use Safari as my browser. Unfortunately, I can't view pdfs in Safari for Windows but I can with FireFox and IE. Any way to resolve?

    What happens when you try to view a pdf file on Safari? In my experience Safari has never worked well in Windows. Use a browser you know works.
    Did you check for a PDF reader plugin for Safari?

Maybe you are looking for

  • Remote Time Machine backup over VPN, high data usage?

    I have a remote Mac mini Server running 10.10.1 in a hosted environment. I'm attempting to perform a Time Machine backup from a MacBook Pro, also running Yosemite, over VPN. While TM does see the AFP share over VPN and is backing up, it's been workin

  • Auto determination of Service Organization and Org.Unit

    Hello I've created an Org.Model with Org.Units. I've also configured a rule to derive the service organization and the responsible Org Unit based on the activity reason. When i manually specify the activity reason in the transaction, both service org

  • Image swap without resize

    Greetings. I have to create image swaps without having the image resize to the layer size. Is there a way to do this? Is there a behavoiur I can purchase that will do this? Any help appreciated. Remove $$ to email directly. Thanks.

  • Problem: Nokia C7 Social application stopped worki...

    I have a problem with my new Nokia C7. Social application has stopped working on the first day of use and now only says "Script alert: Sorry, please uninstall and reinstall communities."  I presume "communities" means the Social application, and I ha

  • How to create an anonymous survey to SharePoint

    Hello. I've created a survey to SharePoint. And i have a sharepoint group called "My workers" and they should be able to respond to the survey anonymously. Do you know how this can be done? Help would be very much appreciated Br /Freddie