Safari on windows xp

Installed on hp desktop, runs perfectly... like a Mac

Hi S,
Happy New Year & Welcome to the new apple Discussion Forum.
i do not think that is possible but i am not certain. Mozilla's Firefox is one i know that is windows compatible. Again i am not certain about Safari window I look around & I do not see that being an option. Perhaps some one else will chime in that know definitively. In the interim FF?
good luck let us know. regards, Eme
Great your spex are listed down the bottom of your message as i compose this thanks MODerators!!!

Similar Messages

  • Error message when installing Safari on Windows xp

    Tried to install Safari on Windows XP.
    Recived the following message;
    "The older version of Apple Software Update cannont be removed. Contact you technical support group."
    Then this message,
    "Safari Installer Interrupted"
    What do I do and how do I fix it?

    Hello, dtharachai. 
    Thank you for the question.  Here are a couple things you could try to troubleshoot this issue.  You can try to repair the program Apple Software Update by following the first article below.  After you process these steps, attempt to uninstall this program.  If that step does not work, I have included a more in depth troubleshooting article that will help you uninstall program.  Once this is done you should be able to install Safari. 
    How to repair Software Update for Windows
    http://support.apple.com/kb/TA24326
    "The feature you are trying to use is on a network resource that is unavailable" alert when removing Apple software in Windows
    http://support.apple.com/kb/TS3704
    Cheers,
    Jason H. 

  • 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/

  • Drag File From Safari Download Window to Other Volume - Moves not Copies File - Bug or Feature ?

    Hi,
    Appreciate comment on what I thought was unusual Mac OS behavior.  Running Safari 5.1.5, OS 10.6.8.
    Mac OSs in my experience copy a file when it is dragged and dropped to another volume/drive. (Let's leave classic desktop out of this.)
    It may be the first time I've ever done it in any version of Safari, but just dragged a file directly from the Safari Downloads panel onto another drive's icon - and it appeared to "move" the file from its original download destination to the other drive and not simply copy it onto the other drive.
    Didn't look like a copy and standard Finder delete since I didn't see file in the trash, although it was gone from the finder window for the download folder (Desktop in my prefs), and afterwards Safari Download Window magnifying glass icon "can’t show the file “filename” in the Finder because “filename” has moved since you downloaded it." It's reproducible.
    Assuming it's not unique to my configuration, is this a bug or "feature" ?
    Thanks.

    HI,
    From the Safari Menu Bar click Safari/Preferences then select the General tab.
    You can deselect: Open "safe" files after downloading.
    Carolyn

  • 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

  • My macbook pro is running very slow with some strange mouse and window movements. The trackpad is very unresponsive and when responding the cursor moves on its own and/or very erratically. When on safari the window suddenly zooms in or highlights words.

    My macbook pro is running very slow with some strange mouse and window movements. The trackpad is very unresponsive and when responding the cursor moves on its own and/or very erratically. When on safari the window suddenly zooms in or highlights words and looks them up via dictionary. I currently have a wireless mouse connected and I am still having the same problems.
    I fee like I may have a virus or my laptop is perhaps being accessed remotely. All of the sharing options are unchecked.
    HELP PLEASE
    Very worried!!

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the computer and
         after the chime press and hold down the OPTION key until the boot manager screen appears.
         Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
         Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).
    4. Reinstall Lion/Mountain Lion, Mavericks: Reboot from the Recovery HD. Select Reinstall Lion/Mountain Lion, Mavericks from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Reinstall the 10.9.2 update: OS X Mavericks 10.9.2 Update (Combo).

  • Uploading files to website not working with Safari in Windows 7

    Safari version: 5.1.7
    OS: Windows 7
    Hi,
    I am a website owner, and I have a feature on my site where users can upload large (up to 50MB) music files to my server. The feature works in Firefox on OSX & Windows platforms and it also works in Safari on OSX. The uploading feature is not working with Safari for Windows. Do you have any idea why and how to fix this? It can't be an issue with my server as it works in other browsers fine and works fine in Safari for OS X.
    If you have any information on how to solve this or things for me to try to rectify this for use with Windows operating system it would be much appreciated.
    Thanks.

    GREAT NEWS!!!!
    I have solved this issue myself with some help from my a user on Microsoft Forums. The issue stems from the mime type of each Browser Chrome, IE, & Safari for Windows defaults as audio/wav. When the mime type is changed to audio/x-wav everything works. Firefox defaults to audio/x-wav and when changed to audio/wav it DOES NOT work.
    Once I input some code in my .php upload page to change the mimetype if audio/wav is detected everything works GREAT!!!
    So Here is what you need to do: Find your upload page and input this code:
    echo "<p>MIME Type: ".$_FILES["file"]["type"]."</p>";   
    right before your "If/then" statement of file type. For me it was near line 30 in my upload.php page, but I'm sure this is different for everyone.
    This will detect and DISPLAY the default mime type of your browser on the error page when your upload doesn't work. Once you know what mime type works for your file type then you can change your "if/then" statement for mime type upload to change your mime type to the correct one.
    I don't want to give the code here, because I'm sure it's specific to your file types and your site construction, but this should lead you on the right track.
    ***This is the solution if you ARE NOT ABLE to upload any certain file in a certain Browser. It has to do with mime type construction***
    I hope this helps others like it helped me!!!!!

  • How to make Safari browser always open a new web page in a new Safari browser window which was clicked from a PDF document URL

    Hi
    I have a web application which would enable users to see a list of PDF document on the web page and when the user select the PDF document, it will be open by a adobe PDF view
    Within the content of the PDF document, it will contact URL links to some other portal web pages which we would like these other web pages to be open in a new browser window, but our testing shows that the new web pages may not always open in a new browser window.
    Could you help to advise how I can enforce that new web pages that are clicked from the PDF document can always be open in a new Safari browser window ?
    Thanks in advance.
    Regards
    Sen Lee 

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • 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

  • 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 on Windows XP Pro?

    Hey everyone
    This is my first time using the forums here and I was just wondering if it's possible to use Safari on Windows XP. If anyone would have an answer to this would you be able to provide a link to a download page, it would be much appreciated
    Thanks for your time
    custom build 2.4ghz   Windows XP Pro   9800/128mb ati radeon

    Hi S,
    Happy New Year & Welcome to the new apple Discussion Forum.
    i do not think that is possible but i am not certain. Mozilla's Firefox is one i know that is windows compatible. Again i am not certain about Safari window I look around & I do not see that being an option. Perhaps some one else will chime in that know definitively. In the interim FF?
    good luck let us know. regards, Eme
    Great your spex are listed down the bottom of your message as i compose this thanks MODerators!!!

  • 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. 

  • How do I set up bookmarks sync to iCloud for Safari in Windows?

    The page http://support.apple.com/kb/DL1455 shows iCloud Control Panel for Windows permitting bookmarks sync for Safari but when I run it it shows bookmarks sync for Internet Explorer. How do I set this up for Safari on Windows?

    I suggest you post your question on an MS Office forum since it's their software you're having issues with.

  • 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

  • How do I get my bookmarks bar back on my safari browser window?

    how do I get my bookmarks bar back on my safari browser window?

    Greetings,
    In Safari go to View > Show Toolbar.
    Go to View > Customize Toolbar and drag whatever elements you want (like the default set at the bottom) to your tool bar.
    Hope that helps.

  • 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.

Maybe you are looking for

  • Display italics in xml file

    I am using xml files (generated by word) that have <i> tags hand typed into the document to indicate italics. I am displaying the same xml files in both Flash and HTML. The xml file functions fine in Flash, however in html the tags display as typed:

  • Photoshop CS6 Camera Raw 8.2 update fails

    I am on OS X 10.8.4, Photoshop CS6, ACR 8.1. The "A" icon on my menu bar shows 1 update available. When I open the CC updater, it says Photoshop CS6 is up to date. When I open Photoshop CS6 and go to Help/Updates, it shows "Photoshop Camera Raw 7 0.0

  • Posting Payment Lot using Transaction FP05 Tcode in SAP IS-U From Database

    Hi, I want to post a payment lot, using transaction FP05. It is BDC.  Data is in Database that have to be posted on SAP ISU , If anyone knows how  FP05 tcode structure please give your suggestions. So i can send the data to ISU using XI with JDBC Tha

  • Migrating from MySQL to Oracle 11gR2 containing accented characters

    Hello Gurus, I am going to migrate a MySQL database that contains accented characters. The collation of the tables holding these data is utf8_unicode_ci. I used SQLDeveloper to generate data migration scripts. After a test migration run, the web page

  • Can I use Win Xp setup apllication, found in "I386" folder?

    Is it all possible, to reinstall win xp using the setup file found in the I386 file on my harddrive, it asks for a cab1 file, but I can only assume it has only been extracted as there are a load of files with the last letter of their file name replac