Safari won't work with CNN Pipeline and other sites all of a sudden?

Safari won't work with CNN Pipeline and other sites all of a sudden? A few weeks ago Safari was working OK but now I often have to use Firefox to visit certain webpages.
Anyone else having this same problem?
Is there a quick fix?
I'm using Safari 2.0.4
Thanks.

Hi QuickTimeKirk,
I have WMP version 9, as well. I do not use F4M, for many users f4mac is what helps.
I find some items work while others do not. I always get an alert about the wmp , which version it is, takes very long to load, I find it is not consistant with Safari, as seems the poster of this topic has found.
Quoted from ms Mactopia site:
http://www.microsoft.com/windows/windowsmedia/player/mac/
Download and find information about Windows Media Player for Mac and playing Windows Media files in your QuickTime Player. Which download is right for you?
Windows Media Components for QuickTime
Windows Media Player 9 for Mac OS X
Windows Media Player 7.1 for Mac
Important Information
Microsoft will continue to offer Windows Media Player for Mac as a download free of charge, but has no plans to provide future updates or product support.
We are pleased to offer Windows Media® Components for Quicktime, by Flip4Mac™, as an alternative for Mac OS X users wanting to play Windows Media Audio and Windows Media Video.
~•~
Validation of the cnn home page using the W3C Validatior, http://validator.w3.org/
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.cnn.com%2F
though 41 errors is not as poor as some, Firefox handles the site better than Safari, imo.
Some sites just work better with Firefox or an other browser.
Cheers,
Eme '~[ )

Similar Messages

  • Latest version of Safari won't work with my version of OS.

    I downloaded the latest version of Safari but it won't work with my version of OS (10.6.8). ***! It's pretty frustrating that my computer allowed me to download it without noticing it's not compatible--seems like a simple enough concept to check for that BEFORE effing someone up entirely.
    How do i revert back to the old version of Safari? I was using Chrome but it's become impossibly slow.
    Thanks!

    When you click on the proxy icon for an asset, does the "Search All Jobs" view show a "downloading" message indicating that the proxy is being transferred to your local machine?
    Also, what specific software versions (Quicktime and FCS) are you working with?
    - James Heliker

  • Safari won't work with Webkinz site

    My kids (and me) play games on the Webkinz site, but we can't successfully login through Safari, so we use Firefox. But, if we play a long time, Firefox "unexpected quits", and because we have dial up, it takes a long time to get logged back in and everything reloaded, as Firefox empties the cache when it quits. When trying to log in through Safari, the program seems to stall. When reading the loading information from the status bar, it loads about 36 of 41 items, and then nothing happens. I have tried Safari 4.0 on my PC, and it does the same thing - stalls at about 41 items. We use dial-up at home, but I have a fast connection at work on my PC.
    The bottom line is I am trying to find a solution that doesn't crash. Any ideas?
    Thanks

    Hi QuickTimeKirk,
    I have WMP version 9, as well. I do not use F4M, for many users f4mac is what helps.
    I find some items work while others do not. I always get an alert about the wmp , which version it is, takes very long to load, I find it is not consistant with Safari, as seems the poster of this topic has found.
    Quoted from ms Mactopia site:
    http://www.microsoft.com/windows/windowsmedia/player/mac/
    Download and find information about Windows Media Player for Mac and playing Windows Media files in your QuickTime Player. Which download is right for you?
    Windows Media Components for QuickTime
    Windows Media Player 9 for Mac OS X
    Windows Media Player 7.1 for Mac
    Important Information
    Microsoft will continue to offer Windows Media Player for Mac as a download free of charge, but has no plans to provide future updates or product support.
    We are pleased to offer Windows Media® Components for Quicktime, by Flip4Mac™, as an alternative for Mac OS X users wanting to play Windows Media Audio and Windows Media Video.
    ~•~
    Validation of the cnn home page using the W3C Validatior, http://validator.w3.org/
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.cnn.com%2F
    though 41 errors is not as poor as some, Firefox handles the site better than Safari, imo.
    Some sites just work better with Firefox or an other browser.
    Cheers,
    Eme '~[ )

  • Key binding won't work with alt-up and alt-left arrow combined

    I was playing with key binding trying to create a small app where a timer is started with the press of an alt-arrow key and stopped when the key is released. The timers append Strings to a JTextArea telling which alt-arrow key is currently pressed.
    This program works, and in fact if you press a combination of any two keys, both timers will work simultaneously, that is unless you press both up arrow and left arrow together. Can anyone see a bug in the program that explains why it won't work for these two particular keys when combined? Thanks in advance, Pete
    My SSCCE,
    KeyBindingEg.java
    package javaforum2009;
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.InputEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.*;
    public class KeyBindingEg {
      // parallel arrays -- sorry
      private static final int[] ARROW_KEYS = {
          KeyEvent.VK_UP, KeyEvent.VK_DOWN,
          KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT };
      private static final String[] ACTION_STRINGS = {
        "Up", "Down",
        "Left", "Right" };
      private static final String PRESSED = "PRESSED";
      private static final String RELEASED = "RELEASED";
      private static final int TIMER_DELAY = 100;
      private JPanel mainPanel = new JPanel();
      private JTextArea textArea = new JTextArea(20, 30);
      public KeyBindingEg() {
        JPanel northPanel = new JPanel();
        northPanel.add(new JLabel("This JTextField has the focus: "));
        northPanel.add(new JTextField(10));
        textArea.setEditable(false);
        mainPanel.setLayout(new BorderLayout());
        mainPanel.add(northPanel, BorderLayout.NORTH);
        mainPanel.add(new JScrollPane(textArea), BorderLayout.CENTER);
        setBindings();
      private void setBindings() {
        int context = JComponent.WHEN_IN_FOCUSED_WINDOW;
        InputMap inputMap = mainPanel.getInputMap(context);
        ActionMap actionMap = mainPanel.getActionMap();
        for (int i = 0; i < ARROW_KEYS.length; i++) {
          // timer is started on key press and stopped
          // on key release.
          Timer timer = new Timer(TIMER_DELAY, new KeyTimerListener(
              ACTION_STRINGS));
    timer.setInitialDelay(0);
    // get input maps for all alt-arrow keys for both key press
    // and key release
    inputMap.put(KeyStroke.getKeyStroke(ARROW_KEYS[i],
    InputEvent.ALT_DOWN_MASK, false), ACTION_STRINGS[i] + PRESSED);
    inputMap.put(KeyStroke.getKeyStroke(ARROW_KEYS[i],
    InputEvent.ALT_DOWN_MASK, true), ACTION_STRINGS[i] + RELEASED);
    // set corresponding actions for the two different key presses above
    actionMap.put(ACTION_STRINGS[i] + PRESSED, new ArrowKeyAction(false, timer));
    actionMap.put(ACTION_STRINGS[i] + RELEASED, new ArrowKeyAction(true, timer));
    @SuppressWarnings("serial")
    private class ArrowKeyAction extends AbstractAction {
    private boolean onKeyRelease;
    private Timer swingTimer;
    public ArrowKeyAction(boolean onKeyRelease, Timer swingTimer) {
    this.onKeyRelease = onKeyRelease;
    this.swingTimer = swingTimer;
    public void actionPerformed(ActionEvent arg0) {
    if (onKeyRelease) {
    swingTimer.stop();
    } else {
    swingTimer.start();
    private class KeyTimerListener implements ActionListener {
    private String actionString;
    public KeyTimerListener(String actionString) {
    this.actionString = actionString;
    public void actionPerformed(ActionEvent arg0) {
    textArea.append(actionString + " pressed\n");
    public JComponent getPanel() {
    return mainPanel;
    private static void createAndShowGUI() {
    JFrame frame = new JFrame("KeyBindings Example");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(new KeyBindingEg().getPanel());
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();

    camickr wrote:
    I noticed the problem a while ago with a similiar example and asked the same question to which nobody could give an explanation. The same observations seem to apply to your example in that using the numpad arrow keys work without a problem.
    [http://forums.sun.com/thread.jspa?threadID=5176816]
    Yes indeed. I suppose (as always) I should have searched the forum first before asking the question. Thanks for the link and info.
    /Pete

  • Safari won't work with Adobe Shockwave plugin items on websites, despite...

    Safari won't play Adobe Shockwave files on websites, despite updating Shockwave in Safari. It works perfectly in Firefox. Is anyone else seeing this?
    I want to give you an example: Try these files on both Safari and Firefox. In Safari, you cannot even view the items that are supposed to be there. http://pdm6e.music.utexas.edu/p024-26.htm
    Thanks!
    Kat
    Message was edited by: MacKittyKat

    I've set up a blog post about getting Shockwave to run under Snow Leopard (32-bit, ignoring installation warning, etc.).
    http://blog.explorelearning.com/2009/08/gizmos-and-apple-osx-106-snow-leopard.ht ml
    Hope that helps you out.

  • Does Final Cut Express 4 work with mac mini and other questions...?

    I have a few questions I need help in answering... I would appreciate opinions on the following:
    I am about to make a purchase of a new mac. I already have a mac mini PPC, but it is too slow...
    Here is what I am thinking.
    Mac mini, 2GB mem, 160GB hard drive. Will this new mac mini work with Final Cut Express 4?
    Or should I go with the more powerful iMac?
    I like to make movies on my mac but I hate iMovie 08 so I constantly use iMovie HD 06. Should I go to Final Cut Express 4 or just stick with iMovie HD 06?

    There is no doubt that FCE 4 will run on an Intel mini - the GMA graphics processor is compatible. There is also no doubt that an iMac would give you somewhat better overall performance, though it's important perhaps to note that as complex as FCE is, it is actually a little less demanding on hardware than iMovie has traditionally been, so the difference between a mini with 2Gb RAM and a similarly equipped iMac will not be all that great in FCE, though it will become a little more noticeable if you continue to use iMovie 6.
    The main reason for the performance difference between iMovie and FCE is that in order to provide a reasonably sophisticated video editing package that will run on very basic hardware, Apple relied heavily on caching techniques, meaning that while FCE basically spools from video and relies on CPU power, iMovie constantly moves data to and from the hard drive. The mini's hard drive is a (relatively) slow device in comparison to the iMac's - thus the iMac runs iMovie rather more seamlessly. In FCE, the difference is, as said, rather less clear unless you were to go for the top-end model.
    If your budget can stretch to an iMac it makes sense to go that route simply because the extra power and overall performance (and the better graphics processor) will give you greater flexibility down the road. On the other hand, if funds are tight and you need to spend as little as reasonably possible, a mini will do fine, and is sufficient;y inexpensive that in a couple of years could be sold off and replaced without severe financial implications.
    In terms of the choice between FCE or iMovie, beware that if you haven't used FCE before, the transition is not easy, and the learning curve for it is pretty steep. That said, it has far greater power and flexibility in terms of what you can achieve with it than has ever been possible with iMovie.
    That said, for casual and home use, iMovie (version 6 at least) has plenty of power and tools for the majority of projects. iMovie 8 is, in many ways, deeply flawed for those who want that sort of power and workflow tools, being that it is designed for quick and easy creation of movies, not creative and considered productions. It has it's uses, but if you have experience with iMovie already, v8 is really not intended for you at all.
    All that said, I've used iMovie 6 on systems will a lot less power than the current Intel minis, and have found it stable and workable, so I have no doubt it would work well on any current Mac.

  • Airplay won't work with Apple TV and iPad 2

    I have an iPad 2 running iOS 8.1 and an Apple TV 3 with the latest software and I can't use Airplay to send content to my Apple TV. I know there is no issue with the Apple TV since I can use Airplay to send content to my Apple TV using my iPhone 6, and Macbook, but not using my iPad. Oddly, Airplay will work on my iPad when I connect to my airport express, but not to my Apple TV - Apple TV doesn't appear in the drop down menu yet my airport express does! I have gone through all the usual fixes (restarting, restoring, etc. etc.) - to no avail, my iPad simply can not find my Apple TV for some reason. Any help would be greatly appreciated! cheers, d

    I Have the same problem with iOS 8.2 and the latest OS for the Apple TV. My Apple TV is connected by ethernet as is my iMac. I can stream to the Apple TV from my iMac via this ethernet setup. But my iPad and iPhone 5s with iOS 8.2 won't connect even though I can see the AirPlay button and the sound a pics go blank on the iPhone and iPad .
    I Have been suing AirPlay for several years with no prob,ms until now. I am running Yosemite OS on the iMac.

  • I am running Firefox 5, McAfee Site advisor is blocked. I contacted McAfee and they said it won't work with Firefox 5 and that I should use an ealier version of FF or use IE. Is there a patch coming to allow Site Advisor to work on FF 5?

    As above McAfee apparently feels the fault is with FF. I will admit that under the latest 3 version it worked fine. I skipped version 4 because of some things a read about it. I did go with FF5.

    The McAfee Site Advisor add-on is blocklisted by Mozilla due to that Site Advisor extension being the #2 cause of crashing the Firefox 5.0 betas. McAfee was notified of the problem long before that extension was added to the blocklist. Now it is up to them to fix it. <br /> https://addons.mozilla.org/en-US/firefox/blocked/ <br />
    https://bugzilla.mozilla.org/show_bug.cgi?id=660111
    I have read that McAfee is working on a re-written version that is projected to be available in the 3rd week of July.
    Quite honestly, with McAfee taking the position that this problem is with Firefox or is Mozilla's fault, when that add-on has a long history of being [http://kb.mozillazine.org/Problematic_extensions PROBLEMATIC], I have lost the little respect I had for McAfee being a respectable, ethical company. ''Of course, my level of respect for McAfee was low to begin with due to problems I had with their software 10 years ago causing me to re-format my PC bi-weekly immediately after their security scans on a Win98 PC, and haven't used their stuff since once I discovered their software was causing my problem with lost video card drivers repeatedly.''

  • Satellite A300 - inbuilt Chicony webcam won't work with Win Live Messenger

    Hello
    I just bought a *Satellite A300-1MC* (runs on Vista Home Premium), and downloaded Windows Live Mail And Live Messenger.
    The inbuilt webcam won't work with Live Messenger ; and when selecting Tool, Audi + Vieo Setup in Messenger I get thye following message : "We are unable to run Audi Video setup".
    The webcam works fine with the Camera Assisant Software.
    I have tried : 1) killing the C.A. Software and starting Messenger ; 2) dowanloading a webcam driver from Toshiba website ; 3) Updating Windows Vista
    None of the above work.
    Any suggestion gladly received.....
    Thomas

    Hi,
    Many thanks for the advice.
    I have downloaded and installed ManyCam 2.3, then rebooted.
    The ManyCam software works fine, and picks up signal from the inbuild webcam.
    But Windows Live Messenger still doesn't pick up the camera. I can not start a Video call or go to" Video Audio setup".
    I have Windows Live Messenger version 14.0.8064 (installed on Tuesday).
    Funny enough, yahoo messenger works fine : it gets a signal from the webcam.
    Conclusion : i think it is Windows Live Messenger that doesn't work properly for some reason.
    I have ordered a new external webcam, in the meantime.
    Thomas

  • Since downloading Yosmite on my MAC I have not been able to download photos to LR 5. Error message: "the following files were not imported because they could not be read (335).I have been working with several forums and have dtried going into preference

    LR 5 - using it on a MAC-
    Error message: "the following files were not imported because they could not be read (335).
    I have been working with several forums and have tried all recommendations and none have worked.
    I have tried reloading new LR 5 - and it worked for a short time and then stopped.
    Very frustrated that I cannot talk with someone at Adobe.
    The folks that have made recommendations are great but once their suggestions dont work they drop the link,
    Is there someone or someplace I can take my computer to fix this issue.
    It seems to be a problem between LR and Yosemite.

    The permissions have been changed on the destination folder where the photos are to be copied into.
    You must make sure that the permissions are set to Read and Write.
    Or perhaps the destination folder has been changed accidentally to something else, and you need to change it back to whatever it used to be.

  • New version of safari won't work on mac 10.7.5, can't be removed, can't be replaced with old version

    new version of safari won't work on mac 10.7.5, can't be removed, can't be replaced with old version

    When I try to open safari a message says: You can't use this version of the application Safari with this version of Mac OS X 10.7.5. The application requires Mac OS X 10.9 or later.
    I see Recovery needs Wi Fi which is not available here and Recovery is loaded with a list of  potential disasters.
    To heck with Safari I'll just use Firefox. Apple sure screwed up here judging from the multitude of similar complaints on the internet.

  • Since the iOS7 update on my iPad 2, I am having trouble charging it if it runs all the way down, and now, my Safari won't work at all, and it locks up when I click on Safari in the Setting section.  I have tried restoring, and Safari still does not work??

    I cannot reset the Ipad either, Safari won't work, and it won't charge properly if the battery runs all the way down...

    Thanks for that. Much more constructive than the last comment. It's only the restriction code I can't recall, not the access passcode. So I can currently access the device, just not age restricted content. Does that's make a difference? I also wondered if anyone knew how many attempts you get to try to get it right. Now tried 21 times and so far nothing bad has happened but I am concerned I'll eventually be completely locked out of the device. That doesn't seem in the spirit of things though. Surely it's foreseeable that a child could repeatedly try to guess the code so I can't see that it would be right to lock the device down completely in that circumstance, particularly if the access code is being typed in correctly every time.
    Thanks

  • TS1363 "An iPod has been detected but it could not be identified properly"  iPod Nano 7g and 3g won't work with Windows 8 PC. worked fine up until a month or so ago and now they are not recognized.

    "An iPod has been detected but it could not be identified properly"  iPod Nano 7g and 3g won't work with Windows 8 PC. worked fine up until a month or so ago and now they are not recognized.

    Hi cueball819,
    Thanks for using Apple Support Communities.  This article has steps to try if your iPods aren't recognized by iTunes or Windows:
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/TS1369
    Cheers,
    - Ari

  • Itunes updated and now it won't work.  I unstalled it and reinstalled the older version and it still won't open. Says the itunes library won't work with the older program. Help

    Itunes updated and now it won't work.  I unstalled it and reinstalled the older version and reinstalled a older version and it still won't open.  Says the itunes
    library won't work with the older program.  Please help

    It says it cannot removed the older version of iTunes.
    Doublechecking before proceeding ... what's the precise text of that message, please? (There's a couple of different ones I can think of that you might be getting.)

  • I have an Airport Extreme Base Station and have recently upgraded to Mountain Lion. Now airport utility won't work with my base station so I bought a Time Capsule. For the life of me I can't make the substitution work and only see a blinking amber light.

    I have an Airport Extreme Base Station and have recently upgraded to Mountain Lion. Now airport utility won't work with my base station so I bought a Time Capsule. For the life of me I can't make the substitution work and only see a blinking amber light. Can anyone who has made this change offer some advice?

    apikoros wrote:
    The Utility transferred all of the AE's settings, so I still have to change the password, which leaves me with only 2 other questions, I think:
    1)  I assume it's just a matter of using the Utility, entering a stronger password and checking for it to be remembered in Keychain Access.  But do I have to  change the password for each individual unit-- the TC, the Extreme and both Expresses-- or will changing it just for the TC alone work for the entire network?
    Resetting the password you will need to do for each device... the utility cannot even see those old units.
    So you will have to do it for each one.. think it through.. because as you change passwords the others will lose connection.. so start from the express which are wireless extending .. change those first.. and go back up the chain.. as each one changes it will drop off the network.. until you reach extreme and change that. Then you might need to reboot the whole network to get everything talking again. If something goes wrong.. just pluck that one out of the mix and plug in ethernet.. reset and redo the setup. That is my preferred method anyway.. do everything in isolation one by one. By ethernet and then nothing goes wrong.
    2)  Who's the treasonous SOB who spilled the beans to you about the ICBM in my back yard?!?
    N.Korean hackers.
    [Edit] Whoops-- one more question:  I want to partition the TC's disk, but Disk Utility doesn't see it.  What do I need to do?
    You cannot partition a network disk. And apple provided no tools for it in the TC itself. You can pull the disk out and partition it but that voids your warranty. (although done with care who is to know).
    Look at Q3 here.
    http://pondini.org/TM/Time_Capsule.html
    Mixing TM and data on the TC is worth planning carefully. They don't necessarily sit happily together.

Maybe you are looking for

  • Frmcmp.sh problem in R12.1.1

    Hi, Has anyone tried frmcmp.sh script in 12.1.1 release? I kept getting a tns error for my database, and so I checked the script and compared it to 12.0.x script. In 12.0.x, script does a TNS_ADMIN=${TNS_ADMIN:-$ORACLE_HOME/network/admin} In 12.1.1,

  • Border Manager 3.8.5 and S2S VPN

    I have a couple of questions with Border Manager and S2S VPN. Everything is up and running, we can ping both servers (Netware 6.5.6), we can ping workstations attached to each others network, we can access programs from each others network. Everythin

  • ITunes 10.1.0.56 update kills network interface - Windows 7

    Every time I attempt to install 10.1.0.56, it kills my wired network interface (desktop, so only interface) and hangs mid-installation. There are no errors presented. To regain network connectivity, I have to perform a System Restore. At this point,

  • Acrobat 7 prof "UPGRADE"

    I am planning to buy Adobe Acrobat 7 professional originally licensed and comes in its sealed box, but the product I've seen is Adobe Acrobat 7 professional "UPGRADE". It is an updated version or just update patch is? Installation is Multilanguage? R

  • Java Programming Guidance requested

    Hi guys, Hey could you guide me on getting started to java programming on a fast track. i have got very familiar with all the concepts and fundamentls of the language but still dont feel confident.Can any one suggest me where i can have sample codes