Why won't safari 7.o.1 work with silverlight and netflix using mavericks?

Netflx requires MS Silverlight. After installation Safari leads to the Netflix prompt "thanks for downloading, please restart your browser"--restarting browser doesn't work, nor does restarting computer. Netflix works with Silverlight on Firefox however. So, it seems like a Safari problem. Netflix techs couldn't help. I'm using a MacBook Air with Mavericks. Thank you for any advice on getting Safari (7.0.1) to work with Silverlight with Netflix.

Neither one of those Safari extensions are beneficial, so I suggest you uninstall them.
Safari Restore looks like junk. It's no longer required anyway since Safari already incorporates what it allegedly does.
Folx may have corrupted the Silverlight download, therefore I suggest repeating my above instructions to remove and re-install Silverlight.
Restart your Mac in "Safe Mode" and determine if you can load a Netflix movie then. Netflix will stream in Safe Mode, but the video is likely to stutter and there may be no audio.
Please read the following first:
Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
You must disable FileVault before you can start your Mac in Safe Mode.
Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

Similar Messages

  • New 3G IPhone.  Why won't my IPOD Classic headphones work with 3G?

    Why won't my new IPOD Classic earphones work with my new 3G IPhone? These are the original earphones that came with the IPOD and IPhone. Thanks.

    When I tried the headsets again, they all work. I didn't have one of them plugged in far enough. I guess didn't want to breakanything. Thanks for your reply. All fixed!!

  • Why won't my dr beats solo work with iPhone 6

    iphone 6 won't work with Dr beats solo

    When I tried the headsets again, they all work. I didn't have one of them plugged in far enough. I guess didn't want to breakanything. Thanks for your reply. All fixed!!

  • Why won't my adobe flash drive work when I try to use it?

    Why wont my adobe flash drive work when I try to use it?  I am going to school online and I just bought this mac book pro.  My old mac book worked just fine with the adobe flash drive and shackwave.

    You must mean Adobe Flash Player and Adobe Shockwave Player. Get the latest versions here:
    http://www.adobe.com/downloads/
    Right side column.

  • Why won't my new iPod nano work with griffin itrip?

    I just receiveed a new ipod nano as part of the replacement programme, but it will not work with my griffin itrip or my old speakers even though the connection is the same - anyone know why?
    thanks

    I used an iTrip with my old Classic 160, but when I got my 6th gen nano, it wouldn't work either. My iTrip was old, and the connector had lost it's plastic bits, so I thought that might be the reason. I could still use my Logitech speaker dock, so I don't think they changed the connector.

  • Why won't my 7th generation nano work with my Mac Book 10.5.8 Itunes

    I just got a used 7th gen Nano. When I plug it into my Mac Book  with Mac OSX version 10.5.8 I get a pop up saying that my itunes needs to be updated. When I go to update it says I have the most recent update. What do I do can I even use this ipod?

    1. Because older versions of iTunes don’t contain the code needed to work with it.
    2. Click here, buy the DVD, back the computer up, install it, and run Software Update twice.
    (113326)

  • ?Working with clob and blob - using Dbms_Lob

    I need to search through a blob and remove some of the data, but having problems working with dbms_lob.erase.
    Reading the documentation, the procedure is supposed to work with either blobs or clobs, but I can't get it to work with the blob.
    Here's what I've coded and it does not work correctly for blobs.
    What have I've done wrong?
    declare
    v_start                   integer;
    v_stop                    integer;
    v_amount                  integer;
    v_max_len                  integer:=32676;
    v_offset                   integer:=1;
    v_new_length               integer;
    v_clob clob;
    v_blob blob;
    begin
    update test_clob
    set clob_id = clob_id
    where clob_id = 1
    returning clob_desc into v_clob;
    v_start := 0;
    v_stop  := 0;
    v_amount := 0;
    v_start := dbms_lob.instr(v_clob, '<property name="Name">SortMode', v_offset );
    v_stop  := dbms_lob.instr(v_clob, '</property>',  v_start );
    v_amount := ((v_stop - v_start)+11) ;
    dbms_output.put_line('Clob: '||v_clob);
    dbms_lob.erase(v_clob, v_amount, v_start);
    dbms_output.put_line('Clob: '||v_clob);
    rollback;
    update test_clob
    set clob_id = clob_id
    where clob_id = 1
    returning blob_desc into v_blob;
    v_start := 0;
    v_stop  := 0;
    v_amount := 0;
    v_start := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('<property name="Name">SortMode'), v_offset );
    v_stop  := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('</property>'),  v_start );
    v_amount := ((v_stop - v_start)+11) ;
    dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    dbms_lob.erase(v_blob, v_amount, v_start);
    dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    rollback;
    end trg_bui_user_assoc_layout;
    /This is the output
    Clob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Clob: this is only a test                                            should leave this alone
    Blob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Blob: this is only a test

    Well, you left out the table DDL and your insert for sample data (would be nice to have) as well as your Oracle version (pretty much a necessity).
    Since i had to make my own there could be a difference in how you populated your table, but i can't reproduce your findings.
    ME_ORCL?drop table test_clob purge;
    Table dropped.
    Elapsed: 00:00:00.09
    ME_ORCL?
    ME_ORCL?create table test_clob
      2  (
      3     clob_id     number not null primary key,
      4     clob_desc   clob,
      5     blob_desc   blob
      6  );
    Table created.
    Elapsed: 00:00:00.03
    ME_ORCL?
    ME_ORCL?insert into test_clob values
      2  (
      3        1
      4     ,  'this is only a test <property name="Name">SortMode</property>  should leave this alone'
      5     ,  utl_raw.cast_to_raw('this is only a test <property name="Name">SortMode</property>  should leave this alone')
      6  );
    1 row created.
    Elapsed: 00:00:00.01
    ME_ORCL?
    ME_ORCL?commit;
    Commit complete.
    Elapsed: 00:00:00.01
    ME_ORCL?
    ME_ORCL?declare
      2  v_start                   integer;
      3  v_stop                    integer;
      4  v_amount                  integer;
      5  v_max_len                  integer:=32676;
      6  v_offset                   integer:=1;
      7  v_new_length               integer;
      8
      9  v_clob clob;
    10  v_blob blob;
    11
    12  begin
    13
    14   update test_clob
    15   set clob_id = clob_id
    16   where clob_id = 1
    17   returning clob_desc into v_clob;
    18
    19   v_start := 0;
    20   v_stop  := 0;
    21   v_amount := 0;
    22
    23   v_start := dbms_lob.instr(v_clob, '<property name="Name">SortMode', v_offset );
    24   v_stop  := dbms_lob.instr(v_clob, '</property>',  v_start );
    25   v_amount := ((v_stop - v_start)+11) ;
    26
    27   dbms_output.put_line('Clob: '||v_clob);
    28
    29   dbms_lob.erase(v_clob, v_amount, v_start);
    30
    31   dbms_output.put_line('Clob: '||v_clob);
    32
    33   rollback;
    34
    35   update test_clob
    36   set clob_id = clob_id
    37   where clob_id = 1
    38   returning blob_desc into v_blob;
    39
    40   v_start := 0;
    41   v_stop  := 0;
    42   v_amount := 0;
    43
    44   v_start := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('<property name="Name">SortMode'), v_offset );
    45   v_stop  := dbms_lob.instr(v_blob, utl_raw.cast_to_raw('</property>'),  v_start );
    46   v_amount := ((v_stop - v_start)+11) ;
    47
    48   dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    49
    50   dbms_lob.erase(v_blob, v_amount, v_start);
    51
    52   dbms_output.put_line('Blob: '||utl_raw.cast_to_varchar2(v_blob) );
    53
    54   rollback;
    55
    56  end trg_bui_user_assoc_layout;
    57  /
    Clob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Clob: this is only a test                                            should leave this alone
    Blob: this is only a test <property name="Name">SortMode</property>  should leave this alone
    Blob: this is only a test                                            should leave this alone
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.03
    ME_ORCL?select *
      2  from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE    11.2.0.2.0      Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    5 rows selected.
    Elapsed: 00:00:00.03
    ME_ORCL?

  • Why won't my plantronics 780 headphones work with itunes?

    I have plantronic 780 headphones, the kind that plug in to a USB drive, and It is selected as my only default "speaker" on my actual computer but for some reason Itunes won't play any of my music because I disabled my speakers on the computer.  Trying to see if that was the issue I disabled my computer speakers and defaulted my headphones and yet I can hear everything else (youtube, netflix, everything), I cannot hear anything from itunes and it won't even play my music.  How do I fix this because I've gone through all the preferences and stuff on itunes and the only thing that I could think of would be playback under "more options" but it won't allow me to select a specific device to listen through...I don't understand why itunes has complicate it this way, if my computer default "speakers" are my headphones than it should automatically play.

    Which version of iTunes are you using?  The 64-bit version of the first release of iTunes 12.1 (12.1.0.71) has a number of playback issues, including failure to correctly switch between output devices - some users have reported, for example, no ability to play through a Bluetooth device unless that device was selected as the default audio output in Windows at the time when iTunes was installed.  There is, however, a new release as of today (12.1.1.4) which claims to resolve the playback issues with its predecessor; it may be worth installing the new version to see if it resolves your problem.

  • Why won't Safari establish a secure connection with Facebook?

    I've tried doing things with proxy. I've tried resetting Safari. I've tried doing things with cookies. I've tried disabling extensions. Next step is to try throwing my laptop out the window. This only started happening yesterday and there is no issues with other sites. It's not my internet connection. I can't get to Facebook by direct URL or through google or through links in my history. Macbook Pro bought in 2012 with Mountain Loin.

    I have the same issue. Did everything that was recommended. Finally I just downloaded Google Chrome and use that for Facebook. No one seems to know why this happened

  • Why won't my 20" cinema display work with an HP laptop / Vista

    I have my 20" cinema display connected to my hp laptop (using vista) under hardware, and a few other places it shows that the monitor is detected, but I can't get a picture to show on the monitor no matter what I do. It stays black, even though it is detected. Has anyone else had an experience with this?

    the option(s) that it gives you are the recommended resolutions as determined by the "handshake" that happens between the monitor and computer (sort of a pre-UPnP standard). you can always press the advanced button and then manually select any resolution / display rate that your graphics card is capable of displaying.
    what was the option, by the way? what resolution and display rate?
    the resolution should be 1680x1050 and the refresh rate can probably be anything from 60 to 80 Hz.

  • Why won't my HP Photosmart C7280 work with Maverick

    I have Maverick OS X 10.9.1 installed on my IMac. Since installing it the scanner will not save scans in PDF format. When I deleted the printer/scanner and tried to reinstall it seems to go well, but when I scan a document all I get is a pdf that when I try to open it is nothing but grey matter.

    See https://discussions.apple.com/message/24608239?ac_cid=tw123456#24608239 for starters.

  • Fullscreen doesn't work with Silverlight for Netflix movies

    Recently, when I restarted watching Netflix, I can't go to Fullscreen. I called Netflix and they had me reinstall Silverlight, which I did, but to no avail. Any ideas here?

    Go to the AT&T support site and verify that you have setup Mail with the correct confuguration, i.e., ports, server names, etc. Otherwise, you haven't provided enough details to be of much assistance.
    Rcommend that you get a .me account and start using IMAP email in lieu of POP3. You can then configure your existing AT&T account to forward all email to your .me account.

  • Why won't a Vivitar DVR camcorder work

    Why won't a  Vivitar DVR camcorder work with Imovies? Can someone please let me know.
    Thanks

    It would have speeded up a reply if you had bothered to mention what version of iMovie, on what Mac, running what version of OS X.
    iMovie 11 - cameras supported:
    http://help.apple.com/imovie/cameras/en/index.html?lang=en_US
    iMovie 9 - cameras supported:
    http://support.apple.com/kb/HT3290?viewlocale=en_US
    iMovie 8 Camcorders supported:
    http://support.apple.com/kb/HT1014
    Digital camera RAW formats supported by OS X Lion:
    http://support.apple.com/kb/HT4757?viewlocale=en_US
    Digital camera RAW formats supported by OS X Snow Leopard:
    http://support.apple.com/kb/HT3825?viewlocale=en_US

  • Why won't my mac internal microphone work?

    Why won't my mac internal microphone work?

    I just found and removed a small piece of sticky tape which was covering the mic. The mic is on the top surface of a mac - you can only just see a lighter coloured small round circle in line with the camera on the top narrow surface. My problem was sorted despite all other help and just before I gave up.  Check no-one has posted a sticky message, camera cover or even an ornament over your mic. How many folk know where the mic is?

  • Why won't the Avatar Interactive Desktop work on Windows xp SP3

    As said in the title Why won't the Avatar Interactive Desktop work on Windows xp SP3. I have tried everything (uninstalling AIR, reinsalling it etc) I can think of but nothing makes it work. This image shows what I get in return every time I try to install the app. My PC meets all requirements to run Adobe AIR. Why is this occuring? I have the current version of AIR.  

    Hi oxide9999999999,
    For the moment, you have to install the version of AIR linked from their site: http://www.avatarmovie.com/desktop/index.html
    Hope this helps,
    Mirela

Maybe you are looking for

  • Restrict A User From Changing A Payment Term While Adding A/R Invoice

    Dear Experts, We want to restrict our users from changing payment terms while adding A/R Invoice. We use SAP B1 2007 b. Thanking  you Pradnya

  • Phone will no longer sync gmail account

    My gmail account stopped syncing to my phone on October 13th.  I cannot receive any emails past that date.  I've since done a hard reset on my phone, changed email user information, and tried to clean out my email account in attempts to make room for

  • Printing PNGs in book

    Hi all, I'm currenty working on a wedding album for a client, and have decided to have it published using iPhoto's book ordering system. The pages I've designed include a mixture of JPEG files and PNGs. The PNGs had no backgrounds when I created them

  • BToes 476-BW and Plantronics Pulsar 590a Problems

    Hello, Trying to use my Plantronics Pulsar 590a Bluetooth Headset with my BToes 476-BW USB Bluetooth Dongle.  Using MSI drivers seemed very unstable, and sometimes wouldn't connect to headset.  Downloaded latest Broadcom drivers from their website, M

  • Icloud and upgrade issues

    Hi, I have an iphone 4s, which was backed up on my MAC 9 months ago. I then started to use icloud. I have just installed ISO 7 and the icloud backed up my phone. Great. However I want to go on to itunes and download some CD's, but when i connect my i