Safari 6.1.1 does not play youtube videos. Can someone help me please? Problem started today.

Hello

Today my MBP, Safari 6.1.1. stop playing youtube videos. YouTube says safari is obsolete. What should I do? Thank you.

Upgrade the operating system to a newer version or try another browser that is out of date.

Firefox

Opera browser

Tags: Mac OS & System Software

Similar Questions

  • Oracle does not get launched. Can someone help me on this... ?

    Hi friends,

    I am facing a problem like Oracle Forms are not themselves started.
    Can someone help me on this...?

    Waiting for answers

    Thank you
    Sagar

    Hi Sam,

    OS is Windows7, so I think it must be the problem with the file of the Java virtual machine. Navigate to the following location:
    C:\Program Files (x 86) \Oracle\JInitiator 1.3.1.30\bin\hotspot
    Replace the file FMV of 805KB size with a FMV of larger file (say 2, 280KO).

    This should work... Let me know if it worked or not.

    Kind regards
    Rajesh

  • I have the file calendar.html, it works fine in IE & crome but in firefox the hyperlinks are not active... can someone help me please...

    <html>
     <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
    
      <title>Calendar</title>
      <script language="JavaScript">
    
     var dDate = new Date();
     var dCurMonth = dDate.getMonth();
     var dCurDayOfMonth = dDate.getDate();
     var dCurYear = dDate.getFullYear();
     var objPrevElement = new Object();
     var objPrevCalDateText = new Object();
    
     function fToggleColor(myElement) {
      var toggleColor = "#0000ff";
      if (myElement.id == "calDateText") {
       if (myElement.color == toggleColor) {
        if (myElement.innerText == dCurDayOfMonth && frmCalendar.tbSelYear.value == dCurYear && frmCalendar.tbSelMonth.value == dCurMonth+1) {
         myElement.color = "red";
        }
        else {
         myElement.color = "";
        }
       }
       else {
        myElement.color = toggleColor;
         }
      }
      else if (myElement.id == "calCell") {
       for (var i in myElement.children) {
        if (myElement.children[i].id == "calDateText") {
         if (myElement.children[i].color == toggleColor) {
          if (myElement.innerText == dCurDayOfMonth && frmCalendar.tbSelYear.value == dCurYear && frmCalendar.tbSelMonth.value == dCurMonth+1) {
           myElement.children[i].color = "red";
          }
          else {
           myElement.children[i].color = "";
          }
         }
         else {
          myElement.children[i].color = toggleColor;
             }
           }
         }
       }
     }
    
     function fSetSelectedDay(myElement){
      if (myElement.id == "calCell") {
       if (!isNaN(parseInt(myElement.children["calDateText"].innerText))) {
        myElement.background = "images/cal_cell_down.gif";
        objPrevElement.background = "images/cal_cell_up.gif";
        document.all.calSelectedDate.value = parseInt(myElement.children["calDateText"].innerText);
        objPrevElement = myElement;
    
          if(frmCalendar.tbSelMonth.value < 10)
           sMonth = "0" + frmCalendar.tbSelMonth.value
          else
           sMonth = frmCalendar.tbSelMonth.value
    
          if(myElement.children["calDateText"].innerText < 10)
           sDay = "0" + myElement.children["calDateText"].innerText
          else
           sDay = myElement.children["calDateText"].innerText
    
          window.returnValue = sMonth + sDay + frmCalendar.tbSelYear.value
        window.close();
         }
       }
     }
    
     function fGetDaysInMonth(iMonth, iYear) {
      var dPrevDate = new Date(iYear, iMonth, 0);
      return dPrevDate.getDate();
     }
    
     function fBuildCal(iYear, iMonth, iDayStyle) {
      var aMonth = new Array();
      aMonth[0] = new Array(7);
      aMonth[1] = new Array(7);
      aMonth[2] = new Array(7);
      aMonth[3] = new Array(7);
      aMonth[4] = new Array(7);
      aMonth[5] = new Array(7);
      aMonth[6] = new Array(7);
    
      var dCalDate = new Date(iYear, iMonth-1, 1);
      var iDayOfFirst = dCalDate.getDay();
      var iDaysInMonth = fGetDaysInMonth(iMonth, iYear);
      var iVarDate = 1;
      var i, d, w;
      if (iDayStyle == 2) {
       aMonth[0][0] = "Sunday";
       aMonth[0][1] = "Monday";
       aMonth[0][2] = "Tuesday";
       aMonth[0][3] = "Wednesday";
       aMonth[0][4] = "Thursday";
       aMonth[0][5] = "Friday";
       aMonth[0][6] = "Saturday";
      }
      else if (iDayStyle == 1) {
       aMonth[0][0] = "Sun";
       aMonth[0][1] = "Mon";
       aMonth[0][2] = "Tue";
       aMonth[0][3] = "Wed";
       aMonth[0][4] = "Thu";
       aMonth[0][5] = "Fri";
       aMonth[0][6] = "Sat";
      }
      else {
       aMonth[0][0] = "Su";
       aMonth[0][1] = "Mo";
       aMonth[0][2] = "Tu";
       aMonth[0][3] = "We";
       aMonth[0][4] = "Th";
       aMonth[0][5] = "Fr";
       aMonth[0][6] = "Sa";
      }
      for (d = iDayOfFirst; d < 7; d++) {
       aMonth[1][d] = iVarDate;
       iVarDate++;
      }
      for (w = 2; w < 7; w++) {
       for (d = 0; d < 7; d++) {
        if (iVarDate <= iDaysInMonth) {
         aMonth[w][d] = iVarDate;
         iVarDate++;
           }
         }
      }
      return aMonth;
     }
    
     function fDrawCal(iYear, iMonth, iCellWidth, iCellHeight, sDateTextSize, sDateTextWeight, iDayStyle) {
      var myMonth;
      myMonth = fBuildCal(iYear, iMonth, iDayStyle);
      document.write("<table border='0' width='280' cellspacing='0' bordercolorlight='#808080' bordercolordark='#808080'>")
      document.write("<tr>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][0] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][1] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][2] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][3] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][4] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][5] + "</td>");
      document.write("<td align='center' style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT: bold'>" + myMonth[0][6] + "</td>");
      document.write("</tr>");
      for (w = 1; w < 7; w++) {
       document.write("<tr>")
       for (d = 0; d < 7; d++) {
        document.write("<td background='images/cal_cell_up.gif' align='left' valign='top' width='" + iCellWidth + "' height='" + iCellHeight + "' id=calCell style='CURSOR:Hand' onMouseOver='fToggleColor(this)' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'>");
        if (!isNaN(myMonth[w][d])) {
         document.write("<font id=calDateText onMouseOver='fToggleColor(this)' style='CURSOR:Hand;FONT-FAMILY:Verdana;FONT-SIZE:" + sDateTextSize + ";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'>" + myMonth[w][d] + "</font>");
        }
        else {
         document.write("<font id=calDateText onMouseOver='fToggleColor(this)' style='CURSOR:Hand;FONT-FAMILY:Verdana;FONT-SIZE:" + sDateTextSize + ";FONT-WEIGHT:" + sDateTextWeight + "' onMouseOut='fToggleColor(this)' onclick='fSetSelectedDay(this)'> </font>");
        }
        document.write("</td>")
       }
       document.write("</tr>");
      }
      document.write("</table>")
     }
    
     function fUpdateCal(iYear, iMonth) {
      myMonth = fBuildCal(iYear, iMonth);
      objPrevElement.bgColor = "";
      document.all.calSelectedDate.value = "";
      objPrevCalDateText.color = ""
      for (w = 1; w < 7; w++) {
       for (d = 0; d < 7; d++) {
        if (!isNaN(myMonth[w][d])) {
         if (myMonth[w][d] == dCurDayOfMonth && iYear == dCurYear && iMonth == dCurMonth+1){
          calDateText[((7*w)+d)-7].color = "red"
          objPrevCalDateText = calDateText[((7*w)+d)-7]
         }
         calDateText[((7*w)+d)-7].innerText = myMonth[w][d];
        }
        else {
         calDateText[((7*w)+d)-7].innerText = "";
          }
        }
       }
     }
    
      </script>
     <script id=clientEventHandlersJS language=javascript>
    <!--
    
    function Select1_onblur() {
    
    }
    
    //-->
    </script>
    </head>
     <body topmargin="0" leftmargin="0">
      <script language="JavaScript" for="window" event="onload">
    
      var dCurDate = new Date();
      frmCalendar.tbSelMonth.options[dCurDate.getMonth()].selected = true;
      for (i = 0; i < frmCalendar.tbSelYear.length; i++)
       if (frmCalendar.tbSelYear.options[i].value == dCurDate.getFullYear())
        frmCalendar.tbSelYear.options[i].selected = true;
    
      </script>
      <form name="frmCalendar" method="post" action="">
       <input type="hidden" name="calSelectedDate">
       <table border="0" cellpadding="0" cellspacing="0" bgcolor="#c0c0c0">
        <tr>
         <td>
          <select name="tbSelMonth" onchange='fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)'
           style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT:normal' id="Select1" onblur="return Select1_onblur()">
           <option value="1" selected>January</option>
           <option value="2">February</option>
           <option value="3">March</option>
           <option value="4">April</option>
           <option value="5">May</option>
           <option value="6">June</option>
           <option value="7">July</option>
           <option value="8">August</option>
           <option value="9">September</option>
           <option value="10">October</option>
           <option value="11">November</option>
           <option value="12">December</option>
          </select>
          <select name="tbSelYear" onchange='fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)'
           style='FONT-FAMILY:Verdana;FONT-SIZE:12px;FONT-WEIGHT:normal'>
           <option value="1998">1998</option>
           <option value="1999">1999</option>
           <option value="2000">2000</option>
           <option value="2001">2001</option>
           <option value="2002">2002</option>
           <option value="2003">2003</option>
           <option value="2004">2004</option>
           <option value="2005">2005</option>
           <option value="2006">2006</option>
           <option value="2007">2007</option>
           <option value="2008">2008</option>
           <option value="2009">2009</option>
           <option value="2010">2010</option>
           <option value="2011">2011</option>
           <option value="2012" selected>2012</option>
           <option value="2013">2013</option>
           <option value="2014">2014</option>
           <option value="2015">2015</option>
          </select>
         </td>
        </tr>
        <tr>
         <td></td>
        </tr>
        <tr>
         <td>
          <script language="JavaScript">
          <!--  -->
           var dCurDate = new Date();
           fDrawCal(dCurDate.getFullYear(), dCurDate.getMonth()+1, 30, 30, "12px", "normal", 1);
           fUpdateCal(dCurYear, dCurMonth+1)
    
          </script>
         </td>
        </tr>
       </table>
      </form>
     </body>
    </html>

    At least, you will need to use style.color = "#0000ff" instead of color.

    Document.all is not in Firefox, so use getElementById() to deal with specific items.

    A good place to ask for advice on web development is to the 'Web Standards Development/evangelism' MozillaZine forum.

    Aid to this forum are better informed on issues related to web development.

    You must register on MozillaZine forum site to post in this forum.

  • Can someone help me please? I bought Photoshop elements 13 and were not able to install it on my computer.  I made attempts at veveral to install it and I lose connection every time.  Since I was on a package of data plan with at &amp; t, I buy e data

    Can someone help me please? I bought Photoshop elements 13 and were not able to install it on my computer.  I made attempts at veveral to install it and I lose connection every time.  Since I was on a package of data plan with at & t, I have buy the data each month.  I consume ALL my data.  To be a better way. Can someone help me please? I bought Photoshop elements 13 and were not able to install it on my computer.  I made attempts at veveral to install it and I lose connection every time.  Since I was on a package of data plan with at & t, I have buy the data each month.  I consume ALL my data.  To be a better way.

    I am well aware I could you bought the disc version. I bought the software Officemax in Vicksburg, MS I thought that the disc was included in the box.

  • Try to reinstall Adobe Photoshop Extended CS5 Win - have downloaded the file, but when I double click on the .exe to install file, I get and which words "Installer could not initialize - file not found" error message can someone help me?

    Try to reinstall Adobe Photoshop Extended CS5 Win - have downloaded the file, but when I double click on the .exe to install file, I get and which words "Installer could not initialize - file not found" error message can someone help me?

    Hi Rose

    Refer to the troubleshooting error messages | CS5, CS5.5 bootstrapper

    Installer [CS5.5] initialization failed. Please download Adobe Support Advisor to detect the problem.

    I hope this helps.

    Thank you

    Varun

  • I lost my alternative layout, I worked on it yesterday - today, he did not go there, can someone help me please:?

    I have created an Alernate (Tablet) of my version of office layout. Today when I open it the Plan of the Tablet isn't here! Can someone help me please. I use windows 7. I have not had problems like this before. Would it be a clitch or error of muse.

    Deborah

    [email protected]

    Maybe a stupid question: you have changed to the button on the top of the window of the 'plan' "tablet"?

  • Media Player does not play the video, only the sound that's a .avi format and when downloaded on fb it played entirely

    the media player does not show the video noise.  Same thing in the power point presentation, I tried to download.  The video plays correctly uploaded on facebook

    It happens with all videos?

    You can download and install ffdhow and check again the question: -.

    http://sourceforge.NET/projects/ffdshow/

    or, you can try VLC Player: -.

    http://www.videolan.org/VLC/

  • Software problems and apps are not downloading.can someone help me please

    wwhen I opened the software update, it's evidence that an error occurred when checking for the software update.

    APps are not download from the App Store. Please help me solve this problem.

    Can someone help me sort the Please this problem.

  • DVD autorun.exe opens main html.menu very well, but when click on hyperlink in the menu it opens the new tab, but does not play a video, but the video html works directely

    Autorun.exe DVD opens with main menu.html. then when I click 1. HTML which is ment to start (from the main menu.html) only to open a white page only and plays not the file using src = flvplayer.swf player flash video. (it works on all other browsers) fine. Installed the flash plugin but still does not not in Fire fox. But when I navigate to the root of the cd and click 1. HTML it opens and plays very well, but do does not form the main menu.html. any help would be grat

    Thank you

    In your main.html:

    • What is the URL in the address bar?
    • What is the URL of the link?
  • BlackBerry Smartphones can not play youtube video with the 3G network, but works with WiFi, why? Help, please!

    Hello

    I tried several times to read the youtube videos with network wifi and it works fine, but when I use the 3G or GPRS nework to play the video, it first to ask "Switch to WAP for streaming media? (with wifi that he won't ask) so I press ok and it uptempt to load and an error message "content not available. Server is blocked or unresponsive. ", it goes with all the videos I click on that. Help, please.

    Thank you

    Let me share my personal experience on the subject. When they are facing the same problem, I asked my provider and they tried to pull a fast explaining that viewing videos on the 3G network is dependent on the device and that it is not possible to videos on my BB "BOLD" due to speed issues. They even suggested that I buy an iPhone 3G given that subscribers who do not seem to display YouTube videos problems. A load of rubbish! After only a brief workshop organized by RIM and my career, I was "unofficially" informed by a member of staff that it was a TCP/APN issue. I take advice, made the necessary adjustments, and was able to view Youtube videos on the 3 G network without problem. However, my Bill the next month floored me. Even if I'm on a package data unlimited, I was charged an extra $ 70 on top of what I usually pay. Learn more with my carrier, they were kind enough to inform me that I have to access the Internet via their APN address, which translates into a lower speed of AFN, orI will have to pay for accessible data on the other addresses of the AFN. I supported with my questions and my carrier eventually admitted that they were actually limiting the speed on AFN as allowing only some mobile devices to access data at 3G speed. Then you tell me!

  • Movie Maker does not play my video and help convert to DVD format.

    I just started using Movie Maker.  I have a few movies made and published to my computer, and they played wonderfully.  I have two questions.  When I return to movie maker and open the file to make a few adjustments different edition of the film will not play.  I've tried everything.  My calendar of film is clearly visible, but nothing makes the reading of the full video in movie maker.  When I go back to recorded versions on my videos that I have no problem playing the video.  What Miss me.  I want to make a minor revision to my film but can't do play in movie maker.

    Second question - I have only the ability to record on a cd on my computer at home.  I have saved movies on a CD and downloaded on my work computer that has Roxio and a DVD burner.  It seems that I have correctly recorded on my work computer to a DVD-R disc, and it appears that when he plays on my computer from the disk, however, when I try to play on a DVD player it displays an error and will not play.  Roxio gives me the opportunity to record in different formats for compatibility (old DVD to Blueray players) and I tried both without success.  Any ideas.

    Thanks for your help!
    Amy

    I just started using Movie Maker.  I have a few movies made and published to my computer, and they played wonderfully.  I have two questions.  When I return to movie maker and open the file to make a few adjustments different edition of the film will not play.  I've tried everything.  My calendar of film is clearly visible, but nothing makes the reading of the full video in movie maker.  When I go back to recorded versions on my videos that I have no problem playing the video.  What Miss me.  I want to make a minor revision to my film but can't do play in movie maker.

    Second question - I have only the ability to record on a cd on my computer at home.  I have saved movies on a CD and downloaded on my work computer that has Roxio and a DVD burner.  It seems that I have correctly recorded on my work computer to a DVD-R disc, and it appears that when he plays on my computer from the disk, however, when I try to play on a DVD player it displays an error and will not play.  Roxio gives me the opportunity to record in different formats for compatibility (old DVD to Blueray players) and I tried both without success.  Any ideas.

    Thanks for your help!
    Amy

    =============================
    What version of Windows are you using?
    (you are in a forum XP but refers generally to publish)
    for Vista)

    What version of Movie Maker are you running?

    What is the format of your backed up files in Movie Maker?
    . MSWMM? .wmv?

    For a re-edition, you need the project .mswmm file
    and all your source files must be in the original
    places where you can see red Xs in Movie Maker
    Collections pane. If you see the red Xs you can
    in a right click of the Xs and get access to the
    current location of the source files and restore
    the path.

    John Inzer - MS - MVP - Digital Media Experience - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • I upgraded to FF 7.0.1 and it not is not loading. If I try to uninstall, it says that it is running. I have uninstalled and rebooted, and installed an earlier version, but the program does not open. Can someone help me please?

    I have tried everything I can think and suggested in your base of knowledge, but FF does not open. I downgraded to a version earlier, but which did not help so I uninstalled everything and did a clean reinstall of the 7.0.1. I restarted at every stage.

    However, when I tried to put my favorite chrome (so I could continue to work) he says that FF was opened. Same thing when I went to uninstall. The Task Manager is not running. Chrome works is not my internet connection.

    I have not installed a new software or hardware recently, although I've improved Roboform to the latest version. This is the reason to update to FF addon RF was not compatible with the version of FF I used.

    I scanned for virus and the machine is clean.

    I'm on a PC running Windows 7 Home Premium. Right now I'm working on my old laptop but I need to FF works on my main machine.

    Any help much appreciated.

    Thank you

    Kathy

    -> Recovery of data from an old profile

    Check and tell if its working.

  • Help I got a malware virus and now I can't update and my firewall does not work I tried a lot of different things that have been posted here, and none of them have worked can someone help me please?

    I tried a system restore to an earlier date, that I went that far back that could, and it still does not.  I have had no file BITS so I followed some advice and managed to get one via a command and now it does not start.  I am trying to install what is called the hotfix for windows (using some other tips) it worked for over an hour now.  I wouldn't hold my breath that it will work for all advice would be welcome.  Thank you.

    Sweet!

  • For Windows XP (KB973768) security update will not be installed. Could someone help me please?

    For a few months now, I constantly had the small yellow shield in the right corner of my screen telling me that an update is available for installation. Whenever I tried to install it but it fails. I tried just shut down the computer and let him move on his own, but that does not work either. I know it is probably not a security threat huge or essential to do my computer function properly, but it's a nuisance for me, and I want to solve it if possible. Apparently my computer is updated on everything with this exception. My OS is Windows XP Media Center Edition SP3. Could someone please help me to install the update or remove the constant reminder to install it?

    ijones32,
    I suggest that you try the following, then post back with the results.

    Solve Windows Update installation issues

    Troubleshooting Windows Update: offered on several occasions to update

    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • error code 80070490 could not be updated. 11-09 has been updated. I'm trying to update but it fair to say that try again with error code nothing changed on my computer. I'm pretty new to this. can someone help me please

    error code 80070490 cannot install windows update.

    Ken,

    0 X 80070490 - ERROR_NOT_FOUND

    Corrupted system file.  You will need to perform an upgrade on the spot or reinstalling the operating system.

    Ignore the title: Some Windows Vista functions may not work, or Windows Vista may stop respondinghttp://support.microsoft.com/kb/929833

    A repair install is that the usual of SFC/scannow solution does not work.

    You receive an error code "0 x 80070490" when you use Windows Update or Microsoft Update Web sites to install updateshttp://support.microsoft.com/kb/958044

Maybe you are looking for

  • Installation of Service Pack 3 and (almost) catastrophic failure.

    After properly installing Service Pack 3 and restarted my computer, ALL I get on my screen is my beautiful background of hills and blue sky.  NOTHING else.  The only way I could get my messages (and get on this site) was to make Ctrl-Alt-Delete and t

  • HP Photosmart Premium Fax in one-printing problem

    I changed my black cartridge printer HP 364 when it was low on ink. After that I put a new one in, the printer will not print black good display shows the black cartridge as full. I tried to clean the print head several times for nothing doesn't.

  • Spooler subsystem stopped and closed

    Spooler subsystem works correctly and closed

  • check the status of the network

    Hello Maybe this question had been posted before, but unfortunately I couldn't see anything relevant. For OS 5.0 and later versions, what is the best way to know if the data connectivity is available? Below is the correct and complete code snippet? p

  • Upgrade processor dv6-1245dx

    I have a DV6-1245dx, and he now has the Intel Core 2 T6500 (2.10 ghz, 2 m L2 Cache and FSB800) inside. I'm looking to upgrade to 6 m L2 cache. Here's my question: If you upgraded to a processor FSB of 1066, it's going to work or not and if so, he wil