Safari for OS 9

I think it's not available, unless I missed something.
But why not? Some of us are stuck on OS 9, having old hardware and/or expensive OS 9 software we don't want to upgrade.

There are plenty of OS 9.x browsers for you to try. Have you tried them all?
Mozilla v1.3.1(Wamcom)
Netscape Browser Archive
Netscape v7.0.2
MacUpdate-NC v7.0.2
iCab v3
Opera v6.0.3
WannaBe (Text only browser)
Internet Explorer v5.1.7
"WARNING:" Microsoft ended support for Internet Explorer for Mac on December 31st, 2005, and is not providing any further security or performance updates.
Accordingly, as of January 31st, 2006, Internet Explorer for the Mac is no longer available for download from Microsoft.
I personally do not use Safari nor like it. Too buggy for my taste. Far more better & more stable browsers out there.

Similar Messages

  • YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads.

    YouTube will not work on safari for me on the ipad. Is there anyway to fix this? I can go anywhere else on the internet fine and it works on google chrome, but on safari it shows a blank screen with the bar on top after it loads, if it's even loading at all.
    I do not know if it's relevant or not, but I got a message on my ipad while on safari saying that my iPhone has a virus. I looked it up and it seems it might have just been an ad from the website I was on, but it happened around the same time YouTube stopped working.

    You will find that using the YouTube app will provide a better viewing experience for YouTube videos.

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

  • Not all things are loading in Safari (for me)

    Ok, well I frequently check my friends myspace's and blogs. And they usually are updated aout every other day with comments and/or new pictures/new things they talk about. So on myspace one of my friends adds new things to it about every day. So I constently check hers. But in the past two weeks a while side of her myspace was not visable to me. So I went in FireFox to see if it was just like that or if it was with Safari. I logged in and went to her myspace. Both sides of information and everything were they. I quit Safari and tried again. Still nothing. But one day I went and checked on Safari and there it was. I left her a comment and when I went back I couldn't see that one side.
    Now, I could just use FireFox for myspace, but not a lot of the symbols and stuff [for example hearts] show up.
    So, is there a downloadable program or an add-on that may fix this. Like maybe a FireFox tab (because I know on Windows FireFox there is an Internet Explorer tab that lets you work in FireFox, but if something doesn't load, you go to that tab and you can view everything perfectly).
    Thanks for the help!
    P.S. Are there any add-ons for Safari, if so where would you get them?

    Nothing is loading in Safari for me since I installed the update this weekend. Firefox and Opera work just fine.
    I was on the phone with Apple for over an hour today and could not get it fixed. They were completely perplexed.
    They need to get this solved, and for now, they seem to ignore the issue on their own support site. Clearly, lots of us are having problems.
    Wish i had never installed that update. Apple's loss is Firefox's gain, I suppose.

  • Does anyone know how to do a text search in the new Safari for iPad iOS 7?

    Does anyone know how to do a text search in the new Safari for iPad iOS 7?

    The feature has been removed to make safari even less useable. You need to download a third party browser like atomic web browser to get the functionality you want back.
    Like many new IOS 7 "features", safari on the ipad is a FAIL.
    At least you can now bury safari in a folder containing hundreds of icons that you can only view 9 at a time.

  • 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

  • I have been using Safari for years and have always kept it on "private." Starting two days ago, I suddenly found myself unable to log onto my blog and many other sites that I normally log onto when private is set. Why?

    I have been using Safari for years and have always kept it on "private." Starting two days ago, I suddenly found myself unable to log onto my blog and many other sites that I normally log onto when private is set. This so annoying, I just switched to Firefox. I don't like Firefox nearly as much as I like Safari. What is happening? How do I fix the problem?
    Thank you.

    Might be a corrupted database ...
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.

  • What's the optimum version of Safari for OS 10.3.9?

    My first post here.
    What is the optimum version of Safari for use on a PowerBook G3 "Pismo" running OS 10.3.9? I'm currently running 1.2 (v 125). I've downloaded 1.3.1 but when I try to install it says "Not compatible with this system." Is there some version in between that would work better? If so, I haven't been able to find it, and the Update Software feature doesn't find it either.
    I did upgrade my firmware at some point, but I don't remember how to look up the version. Any help most appreciated.

    Hi and Welcome to Apple Discussions
    The highest version for Panther is 1.3.2.
    Before you can install 1.3.1, you need to install 1.3. This may get you there: Apply the 10.3.9 Combined Update. Do not use the computer while the Installer is running. Once complete you'll need to restart the computer.
    Then, via your Finder, go to your Applications>Utilities folder. Open Disk Utility. When open, click on the HD on the left, then First Aid Panel>Repair Permissions on the right. Once complete, open Safari.
    When the Safari browser is open, go to the Safari Menu>About Safari. Which version are you using? If it is 1.3.2, then you're good to go. If it is 1.3, then run the 1.3.1 installer again. Once finished (I believe you'll have to restart), run the 1.3.2 update. Once the installer/restart is complete again "repair permissions".

  • 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

  • Created a new folder in bookmarks; when try to add new bookmark, new folder does not appear in drop down menu; using safari for windows

    created a new folder in bookmarks; when try to add new bookmark, new folder does not appear in drop down menu; using safari for windows

    You are using an older version of firefox, upgrade your browser to Firefox 8 and try
    * getfirefox.com

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

  • Which version of Safari for old old xp on Windows 7 Professional Virtual Machine?

    Ok, ready for a challenge?
    I've had the "competition" (yes a PC) for two years now.
    SONY i5 Laptop V111 model series (more details if you need it) running WIndows 7 Professional Edition.
    On the Main Desktop, Windows 7 Professional Edition is running the latest Safari as I prefer it as mostly have Macs but Work (College) runs in a PC mindset.
    Now I have this XP Virtual Machine Desktop and have never been able to do much with it.
    Finally found out why, it had no interconnection to the Internet, so now it has it through IE 8 (again sorry) but that successful installation today  opened up the two year old question that I no longer have the store (Sony Style store closed here) to help me with answers.
    Can I get a Safari for the  XP Virtual Machine Desktop?  It appears to be a 32-Bit version (despite the WIndows 7 Professional being the 64-bit version).
    All I see is Safari for Mountain Lion.  Maybe as I am not able to search properly from the PC, the  Apple pages as I have on my Mac my home page is the Apple store and communities for questions/help.  Where is the "older" Safari's  hiding out?
    Or maybe I don't need such an old version of Safari, as I can't find out which Safari works for my PC as whenever I go in it says my Mac version and I can't hide that since I'm using the Mac to access this Forum!
    Please write if you are confused as I am and I'll find whatever information you need.
    Thanks everyone!

    Hi Cooljoe,
    Based on my understanding, local machine control-alt-delete key combination is control-alt-delete.
    Virtual PC's control-alt-delete key combination is Right Alt - Delete.
    Remote Destop session's control-alt-delete key combination is ctrl + alt +
    end.
    There should be no conflicts between them.
    Regards,
    Wilson Jia 
    This posting is provided "AS IS" with no warranties, and confers no rights. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can
    be beneficial to other community members reading the thread. ”

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

  • Safari for win 8.1 pro

    where can i download to safari for win 8.1 pro (64bit)
    I am already safari at home on my macbook but i wanto use safari on my pc at work.
    many thank for your help

    Use may use the last version of Safari available for PCs, it will work just fine.
    Here's the link.

  • 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 download Safari for Mountain Lion?

    How do I download Safari for Mountain Lion? It's not in the App Store, it is nowhere on the Apple website . . . OK, so I guess it is supposed to be part of Mountain Lion, but I am running Mountain Lion and whatever version of Safari I ended up with would not even run at all . . .  so I trashed it (or at least what part of it I was allowed to trash) and though reinstalling it would be a good idea . . . but I can't find one to reinstall. The latest version I can find is for Leopard, and of course that won't run.
    Not to mention that since getting Mt Lion, iPhoto won't run . . . it produces an error message saying I need to check with the developer to make sure it runs with this version of OS X! So I wonder who the developer of iPhoto is, who produces software that is incompatible with Mt Lion???
    And even in submitting this there is no option to tag it for any OS later than 10.7.4!!

    Since Safari is crashing, post a crash report...   reinstalling the OS X rarely helps a browser crash issue.
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Copy/paste the entire contents of the Crash Reporter window into your reply. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.
    Please include the "binary images" section...

Maybe you are looking for

  • Basic configuration on ASA 5520

    i am runnig ASA in GNS3 am confused a little bit....by default ip traffic is allowed from higher to lower security level....i had just configured interfaces with security level, name and ip address and no shutdown....the traffic will pass throught th

  • MAIL WITH SMALL ATTACHMENTS LIKE 1.00 MB ALSO DOESN'T GO

    WHEN I TRY TO SEND MAILS WITH ATTACHMENTS THEN ATTACHMENTS AS SMALL AS 1.00 MB IS ALSO NOT GOING. WHEN I LOG IN TO MY SERVICE PROVIDER SITE AND MAIL IT FROM THERE THEN THERE IS NO PROBLEM.

  • Menu Exit Code

    Hello All, I wanted a Menu Item in the SAP Standard Menu Bar. i.e the SYSTEM,  HELP menu . So, for the above I went to the Screen Painter SE41--> Program --> MENUSYST --> Status > MEN> Change . Here under the Help Menu - I added one more item with Te

  • WRT350N - Slow, Slow, Wired Connection

    My XP system seemed to die, Net-wise. I had a 6 month old Linksys WRT54GX4, and it seemed to have died...sort of. That is, if I tried to get into the router (wired), it would time out. I kept trying and eventually a few packets would leak in. I could

  • Only PSA with the 'Update subsequently in data targets'- BI 7.0

    Hello friends, We are currently on BI7.0 and my concern is with the InfoPackage Processing of 'Only PSA' with the 'Update subsequently in data targets'checked. When I load the data it loads into the PSA and I can see it in the monitor and in the Mana