Safari for power pc

I have just begun to have Google/youtube problems with my browser [Safari 5.0.6].
I have a G5 power pc running on OS X 10.5.8.
I know I am a dinosaur.
Is this the beginning of the end for my Macs ability to connect me to the internet?
Is there a fix without buying another computer?
My G5 still works great!
Thanks in advance!

I was in the same boat. I run a G5 PPC iMac and I cannot watch flash videos on the BBC website or on BBC iPlayer, and it struggles on YouTube.
For reasons that passeth all understanding, they all work with the PPC version of Firefox, called TenFourFoxG5.app, once you have enabled plug-ins, as it does not natively support Flash.
You can download TenFourFoxG5 from here:
http://www.floodgap.com/software/tenfourfox/
Now for the interesting bit: TenFourFox, like Firefox, does not support most plug-ins. Unless you are prone to headaches (in which case don't) you can read about that here:
http://code.google.com/p/tenfourfox/wiki/PluginsNoLongerSupported
But there is a workaround!
Open TenFourFox and type in the address bar: about:config (no spaces) and click return. This gives you a warning that it might harm the application. Ignore that and click on 'I'll be careful, I promise' and you get the config file that you can edit - with great care.
Look/search (scroll down) for: tenfourfox.plugins.enabled
Set it to true. (Double click it to toggle it)
Now close TenFourFox, open it again, and Flash will now work, as it now uses the plug-ins that Safari has stored.
I am using Flash 11.5.502.55 in TenFourFox and it works just fine.

Similar Messages

  • Need adobe flash for power book g4 OS X 10.5.8

    need adobe flash for power book g4 OS X 10.5.8

    I fould a hack that makes the sites think you have the latest (Intel) version of Flash installed. So I installed it & it works with Firefox, TenFourFox & Safari. Here's the info.
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.
     Cheers, Tom

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

  • How can I install logic pro 7.2 (made for power pc) on a brand new Macbook pro?

    How can I install logic pro 7.2 (made for power pc) on a brand new Macbook pro with OSX 10.7.4?
    This message appears: You can't open the aplication LogicPro.mpkg because power pc aplications are no longer compatible.
    Thanks folks

    You should be able to copy all the files from your old computer, although it might not work if the old machine didn't have an intel processor. When I got a new Mac a few months ago, I used the migration assistant to copy everything from my old computer's time machine backup disk. All my old pro apps, such as Final Cut Pro 6, work fine on the new machine under Lion.
    Later, I wanted to install Soundtrack pro and couldn't do it from the original disks. So I installed it on my old machine and copied the files. It worked perfectly.

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

Maybe you are looking for

  • Printing larger rows in blank report

    I have a training log that managers can print out when holding training. There is a pre-populated one that fills out spots for current employees and adds blanks at the end and one that is completely blank. On the pre-populated one, I can alter the si

  • I have a iPhone 4 and I can't delete my pictures in the albums. Can anyone help me??

    I have a iPhone 4 and I can't delete the pictures in the photo albums. Can anyone help??

  • Itunes Match not working on Iphone 4 after update to IOS 5.1

    Hello, Itunes Match has never been an issue for me in the past.  After I updated to IOS 5.1, I accessed my music app and noticed that Itunes Match was only showing artists that started with the letter "A" And "B".  So I turned match off, turned it ba

  • How to set a value of delay in Timing settings

    Hi all,   I am trying to set value for delay in TimingSetting but not able to set it. please suggest me any solution Thanks In advance,

  • BEx Analyzer

    Hi This is the first time i am working on BEX Analyzer 7.0 version. I created a query and also executed, i could see the data in the report. Now i need to add few more chara in the Rows column, But here i dont see the option of GLOBAL VIEW in the que