Sticky Local Storage box

Most of the time when Adobe Flash Player runs, there is a popup box that says:  "x.ytimg.com (or another name) is requesting permission to store information on your computer."  There is a folder, an Allow button, and a Deny button.  I usually select Deny.  It usually ignores my click.  Sometimes that button dims, but comes back quickly to the way it was.  One in a great while the Local Storage box disappears.  All this prevents me from seeing the video; I have to kill it and go do something else.
So, how do I get Deny to work--ideally, permanently?

The problem was fixed.  Obviously it was FoxNews' problem.  Suddenly it worked again for no visible reason.

Similar Messages

  • Adobe Flash Player Settings Local Storage dialogue box

    An 'Adobe Flash Player Settings Local Storage' dialogue box has recently began appearing (since upgrading to latest version of FP) whenever I play a vid e.g. on YouTube. It gives a URL (not always the same one) and says it 'is requesting permission to share info on your computer' with two buttons for Allow and Deny. With all the recent concerns about hackers getting in on the back of plug-ins and add-ons such as Flash Player, I've been clicking Deny. Is it safe to 'Allow' and is this part of the Adobe FP software? If its not safe and my computer has been compromised, what can I do to clean my PC? Many thanks.

    You can control the way Flash behaves using the Global Settings Manager. The panel you see there are the actual settings on your own machine. Use the menus on the left to load other panels. The Help files explain what each setting does.

  • How can I avoid the Local storage pop-up question dialog box during playing you tube vedios ?

    How can I avoid the Local storage pop-up question dialog box during playing you tube vedios ?

    You might try tweaking your global privacy settings.  I suspect it's set to "always ask."
      Go to this page -- http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.htm l -- which contains the settings panel for Flash Player, and click on the various "deny" buttons to disable this.  (It's a good idea to click on all the tabs to check the settings.)
    If this works for you, please post back.  (I know it worked for me.)
    Ortho_Fan
    (not a techie)

  • Safari 5.1.7 local storage not always clearing upon reset

    There are several threads through out this forum regarding cookies being accepted regardless of settings, but much of those seem to be fixed by one of the recent security updates (seperate from an actual Safari update), including fixed for me. But, have noticed that "local storage" items do not always clear out upon a reset of safari (all boxes checked). In fact, sometimes, it takes two or three resets to completely clear them out.  I have verified this behavior on several mac's running SL each yeilding the same.  I just wondered if anyone else has seen this, or has found a solution (or if this is expected behavoiur). Does this indicate a security threat within the browser?  I have used the feedback to Apple to report this.
    I did find this explanation, however:
    https://developer.apple.com/library/safari/#documentation/iphone/conceptual/safa rijsdatabaseguide/Name-ValueStorage/Name-ValueStorage.html

    BDAqua,
    Nope. It's very erratic. For example, just now I cycled several times between the inbox and the smart mailbox and even closed and re-opened. The inbox showed messages. Then I quit mail and re-opened, the inbox was empty. It took a couple more cycles of quit and re-open to get an inbox display. But as soon as I got it back on, and then closed or changed mailboxes, it disappeared when I went back to the inbox.
    Hellofa way to run a railroad.
    And just for reference, when I first had this issue last week under 10.6.8, I read several posts on this forum wherein other users had problems with the inbox display. Other than the smart mailbox "fix", I never did find a definitive solution or explanation as to why it is occuring.
    John

  • Retrieve variable value from local Storage and display on canvas

    Hi
    I'm working on a project that has multiple html files (the projects are split into 12 so 12 different edge projects and im linking them via window.open()). I have a variable that keeps track of correct answers stored in LocalStorage html object. I have managed to get the localStorage variable to increment up by one each time the object is correct however my last step is to get the variable and them display the result on the canvas. I have tried
    var outPut localStorage.getItem(' ') method to retrieve the variable then used the set and get method to display the result however it doesn't work. Im not sure if I need a for loop to go though the localStorage and get the elements
    Code:
    // insert code to be run when the composition is fully loaded here
    yepnope({nope:['jquery-ui-1.10.0.custom.min.js','jquery.ui.touch-punch.min.js'],complete: init}); // load the jquery files
    sym.setVariable("myScore", 0);
    var c = localStorage["myCount"] || 0; //loading from localStorage
    function init(){
    sym.getSymbol("barLimit").$('scrubber').draggable({start: function(e){
    },drag: function(e,ui){ // start: ...  // Find original position of dragged image
    var leftLimitScrubber  = sym.getSymbol('barLimit').$('scrubber').position().left; // position of the scrubber
    var rightLimitScrubber  = sym.getSymbol('barLimit').$('leftLimit').position().left;
    var LimitTwoLeft  = sym.getSymbol('barLimit').$('rightLimit').position().left;
    if(leftLimitScrubber == rightLimitScrubber){
      sym.getSymbol('correctBar1').play('in'); //
      sym.getSymbol('nextButton').play('in');
      sym.getSymbol('incorrectBar1').play('out'); //
      sym.getSymbol('thumbsDown1').play('out'); //
      sym.getSymbol('thumbsUp1').play('in'); //
      sym.getSymbol('congrats').play('in'); //
    localStorage["myCount"] = parseInt(c)+1; //Converting string to number, and then saving it
    console.log("numberOfCorrectAnswers", localStorage["myCount"]);
    var finalScore = sym.getVariable("myScore");
    finalScore = c;
    sym.setVariable("myScore", finalScore);
    sym.$("Score").html(finalScore);
    } else if(leftLimitScrubber == LimitTwoLeft){
    sym.getSymbol('incorrectBar1').play('in');
    sym.getSymbol('correctBar1').play('out');
    sym.getSymbol('thumbsUp1').play('out');
    sym.getSymbol('thumbsDown1').play('in');
    axis: "x",
    containment: "parent"
           //for (var i = 0; i < localStorage.length; i++){ // iterate throught the local storage
             //var getItem = localStorage.getItem(localStorage.key(i));
              //if(getItem == 'numberOfCorrectAnswers' ){
    The above is the code for the 12th project in  this projects it needs to display the variable inside the object localStorage and display on the canvas.
    Any help will mean a lot. Thank You in advance
    P.S edge animate has a lot of bugs hard to code in

    what you need to do is to create a text box and set a default value of zero. Once that is don't you need a code on the stage which grabs the value form the localStorage object. I used the .text() jquery method to display the value on the canvas. So the zero will be replaced with whatever the value of the localStorage is.
    You also need a if statement to check if the localStorage is undefined, if its not then grab the value and display on the canvas.
    e.g
    var number = localStorage['finalValue']; // for the sake of completeness I had to put this line of code
    if( number ! = undefined){ // if not undefined so the object exits then ...
         sym.$(' (text identifier) '). text(number); // note text identifier is the name of the text box you create in edge
    } // Done

  • VSphere 6, can't use FT with local storage

    Hi guys,
    Now that I have figured out that when turning on FT without shared storage results in no datastores being shown in the FT dialog box in the web client, I've run into a different problem (thus the new discussion topic).
    When I turn on FT for a VM that is on local storage, I am now able to select the datastores, but when I select local storage for the secondary VM, I get a bunch of errors that tell me the secondary host can't reach the .vmx file (of course - that's why I needed the shared storage - for these little files). Shouldn't FT be copying the .vmx file and whatever else it needs to be shared to the right spot, since I've told it where that is? Do I need to move my VM to shared storage, then move my VMDKs and stuff to local storage manually?
    Here's a screenshot of the dialog:
    Here's the current hardware setup:
    ESX1:
    - IP: 192.168.220.51
    - Datastores: ESX1-LocalStorage and NFS
    ESX2:
    - IP: 192.168.220.52
    - Datastores: ESX2-LocalStorage and NFS
    My primary VM for FT is on ESX2, and trying to get my secondary on ESX1.
    Thanks!

    gs_khalsa wrote:
    The availability guide isn't accurate (I'll work on getting it corrected). The requirements for FT storage are:
    - Shared storage: FT config file, tie-breaker file, primary VM vmx file
    - Local storage: all other files (VMDKs, etc).
    The limitation with this however is that FT can't move or replicate your VM files to a new location, so if the host where the primary VMs VMDKs are stored is unavailable FT won't be able to spin up a new secondary.
    Example:
    3 hosts (A, B, C)
    Primary VM running on A - VMDKs stored on local storage
    Secondary VM running on B - VMDKs stored on local storage
    If host A fails, the secondary on B will take over and become primary. However, until host A comes back on-line FT will not be able to create a new secondary.
    Does this make sense?
    Hi, gs_khalsa,
    That does make sense. It isn't all that I think people were hoping it'd be. I think a lot of people were envisioning setting up 2 or 3 hosts in a small environment with no shared storage, and using FT as a share-nothing setup that would ensure a VM never goes down as long as at least one host is alive and the VM isn't corrupted. It's 99% there, but the need for shared storage (that is presumably HA storage, since we don't want the storage to be our single point of failure) for 3 little files kills the vision. FT not being able to spin up a new secondary on a 3rd host seems like it could have been done, too, since FT obviously knows how - it just doesn't automatically assume it should use that 3rd host. Maybe it's more complex that it sounds to actually achieve. At least we have multiple vCPU support now, which is a big step forward. Maybe these smaller milestones will come about in sub-version upgrades *crosses fingers*.
    By the way, I appreciate your responses - they've been very helpful in understanding how what I thought the new FT was and where that idea is off target. Thank you.

  • Local storage not available

    Hello,
    I am trying to create a non-clustered server pool with a single VM server 3.1.1, using Manager also at 3.1.1.
    So far I've created a Server Pool and added the discovered server to this pool.
    The next step would be to create a repository on this server by going to Repositories tab, add a repository and click the "physical disk" radio button. At this point I am able to select the desired Server Pool.
    However, I don't see any available disks to choose as the repository - only blank combo boxes:
    http://d.pr/i/4eYY
    http://d.pr/i/T0G3
    This looks to me like a wrong window, since the label is for a san server and not a physical disk array or something along those lines.
    The internal server disks are arranged in a raid configuration and a single partition.
    I can't figure out what I'm missing. Please advise.

    >
    What make/model is your hardware, also what RAID controller?
    HP DL380/5's have known issues because Oracle uses an unsupported driver.
    >
    Its a proliant ml150 g6 server, with a P410i Smart Array Controller.
    The controller is the same as mentioned in note 1373817.1, which is probably what you are looking at as well. I've experimented with that solution with no positive results yet.
    >
    To see local storage to the VM the disk must be empty. You can not make one large partition on your raid array and use that same partition for your VM installation... and then expect to see the free space available to be used for a repo.
    Check out page 49 of the user guide
    As long as no partition and data are present the device will be detected as a raw disk. The choice is yours
    to use the local disks either to provision logical storage volumes as disks for virtual machines or to install a
    storage repository. If you place a storage repository on the local disk, an OCFS2 file system is installed.
    You will have to break up your RAID volume into multiple LUNS. You should then be able to see the unused LUNS. I've personally never done this but I do have some SSD drives I use for extending database cache. I can see these drives just fine locally. The key is there can't be a file system on the disks. Oracle VM expects a raw device.
    >
    Oh, I shouldn't have said a single partition, as far as partitions go, it's the default layout: /, /boot, swap and free space (it's a single drive as far as RAID goes). Can that work?
    Thanks for that info, I might have to reconfigure the RAID as you suggest, I wasn't aware that it must be a raw device, that brings much valued insight :-) Although I should have expected this since VM 2.1 probably works in a similar way, I just never used the VM Manager and didn't study repos.py closely.

  • V2V - Hyper-V 2012R2 / SCVMM 2012R2- ESX to HV - Local storage not recognised in conversion wizard?

    Hi,
    I am in the final stages of testing for our move from VMWare to Hyper-V.  I am currently testing migrations of VMWare VMs to Hyper-V.  I've connected SCVMM to the vCentre server and attached to the ESX hosts so I can see all the VMs in the
    VMM console. 
    My Hyper-V servers are running in a failover cluster and have shared storage as well as local storage for less important VMs.  When I run the Convert VM Wizard I can't see the local storage listed when selecting a storage location for the newly converted
    VM.  It appears that VMM assumes that the VMWare VM is high availability and thus only shows me the shared clustered drives.  Its not HA in VMWare. although the ESX host is a enterprise version.  This theory is born out when I've converted a
    VWMare VM to Hyper-V I click on the migrate button to move it to the local storage in the new target server location screen I get a tick box, that is ticked, showing the VM is HA.  When I deselect it I can then select local storage and migrate the
    VM over.
    Is there any way of stopping VMM pre-setting the VMWare VMs as HA so I can select the local storage in the conversion wizard?
    Any help gratefully received.
    Rob

    Hi Simar
    Thanks for the advice, I've now got the VM back in a stable state and running HA.
    Just to finish off the thread for future I did the following
    - Shutdown the VM
    - Remove the VM from the Failover Cluster Manager (as you say this did leave the VM configuration intact)
    - I was unable to import the VM as per your instructions so I copied the VHD to another folder on the local storage and took a note of the VM configuration.
    - Deleted the VM from VMM so this removed all the configuration details/old VHD.
    - Built a new VM using the details I saved from the point above
    - Copied the VHD into the new VMs folder and attached it to the VM.
    - Started it up and reconfigured networking
    - Use VMM to make the VM HA.
    I believe I have found the reason for the initial error, it appears there was a empty folder in the Snapshot folder, probably from an old Checkpoint that hadn't cleaned up properly when it was deleted.
    The system is up and running now so thanks again for the advice.
    Rob

  • Do i need to clean up local storage under safari

    do i need to clean up local storage that is found
    under safari

    No. You do not need to clean up anything.
    If you wish, you can empty caches.
    Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    Best.

  • Local Storage cannot be enabled

    Just yesterday, I started having problems with Adobe Flash Player 10 on my Vista computer.  I use both IE and Firefox, and no matter which browser I use, I get the message that local storage has been disabled and I need to enable it.  When I go to the Global Settings page to enable it, I am not allowed to check the box to enable the storage.  I am told that Adobe is aware of this bug.  It is named FP-1914.  What can I do about this?  I have tried downloading an older version of Flash Player, but I cannot figure out which file(s) I need to open to install it.
    Sue

    Hi, if you sent a screenshot it didn't come through because I think that feature has been disabled for a time.
    I use all of the Settings and have not had any problem with any and have been able to set them. I use Windows and Windows Music Player.
    Others that i have worked with and am currently working with have mentioned they can't access one of the Settings
    Panel or even the site itself. However, it was due to not having the correct Flash Player installed, along with the correct
    ActiveX Control whether IE or other browsers. Once their Flash Player was installed correctly then they had no problem
    with any Settings.
    I am not familiar with Pandora, but would only make this comment. Flash Player is a browser plug-in and sometimes
    in users add ons there are some that will conflict with the browser itself, add ons conflicting with each other and conflict with the Flash ActiveX Control.
    Perhaps an add on is conflicting with Pandora since it is Flash enabled as you say. Just mentioning a possibility.
    Also you may want to make sure your Flash Player is installed correctly since sometimes with an Uninstall/Install one old file doesn't get removed.
    Thanks,
    eidnolb

  • How do I adjust the local storage settings

    I have FP installed but does not show up as an installed program. I want to adjust local storage settings but instructions  adobe gives me do not make sense. Where do I find application to open and adjust settings ?

    Excuse me for being stupid but how do I get to "Website Storage Settings Panel" page
    Date: Fri, 19 Apr 2013 04:51:18 -0700
    From: [email protected]
    To: [email protected]
    Subject: how do I adjust the local storage settings
        Re: how do I adjust the local storage settings
        created by Sunil_Bhaskaran in Installing Flash Player - View the full discussion
    The following link has some useful instructions: http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.htm l#main_7__Disable_Flash_Player_hardware_acceleration Thanks,Sunil
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5250355#5250355
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5250355#5250355
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5250355#5250355. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Installing Flash Player by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • What is "local storage" in Safari 5.1.7

    Why is it in Safari 5.1.7 that it always takes a couple of reset Safari's to actually clear out local storage? Everything else always clears out, just local storage will pop back in ...

    Might be the security fixes >  Safari 5.1.10 for Snow Leopard

  • I'm try to buy a movie from iTunes with my I pad 3 and it tells me there is not enough local storage and when I go to my local storage there is a lot on free storage I also restarted my ipad but still the same prob what do I do?

    I'm try to buy a movie from iTunes with my I pad 3 and it tells me there is not enough local storage and when I go to my local storage there is a lot on free storage I also restarted my ipad but still the same prob what do I do?

    5GB is typically not enough space to download a movie.  Often, movies take from 3 - 5 GB to begin with.  The only option you have is to delete more things from your iPad.  You can remove unused Apps, pictures, music, text message (messages with pictures can take up a lot of space), email messages, books, magazines etc.

  • How do I download a movie to my phone?  when I click 'rent' through itunes, I get a message that there is not enough available local storage, but I can manage my local device storage usage in 'Settings'.  I have activated icloud, but this has not helped.

    How do I download a movie to my iphone 3G?  When I click 'rent' in itunes, I get a message that there is not enough available local storage, but I can manage storage on my device in 'Settings'.  I have activated icloud, but don't know how to change my storage so that I can rent and watch the movie on my phone.  thanks for any help you can give.

    I always do my Rentals with the itunes program on the computer.
    Make rental from itunes store. It will show in movies under library, DO NOT click to play it. Plug in the device to the computer. Click the name of the device on left. Click on movies. There is an  option to copy to the device. Sync. obviously you still need space on ipad to put rental but you can have it take computers hard drive space until you need it.

  • How can i get more local storage space on my iphone 4

    I want to put more song on my iphone 4 but it keeps saying i dont have enough local staorage space. How can i get more local storage space on my iphone 4?

    You don't. Delete 'stuff' you don't need or buy a phone with more storage. you can not increase or upgrade the internal storage in the iPhone.

Maybe you are looking for

  • Download box popped up

    While I was online the download box appeared asking if I wanted to download three media files that I never requested to download.  I clicked clear.  I see they are still in my downloads. What should I do and do I have a virus?

  • Is entries posted to copa in subcontracting

    Hi      while doing the sub contracting scenario system giving an error message that the gl account is not assigned to value field in FI transfer structure.but in normal purchase order its not showing that message.i have a doubt that why system is sh

  • Directory watch on another server

    OK, we have a weird situation. I am in an environment where we have ColdFusion MX 7 on our development server but CF 5 on our production servers. I have developed a directory watcher solution to automate one of my processes but it will be at least 6

  • Iphone4 doesnt ring, only vibrates!

    Guys, having problems with the iphone4. just vibrates!!! Checked everything all ok. I can hear the music on the speakers! when you change a ringtone, i can also hear that, But when i get a call, it just vibrates!!! Checked the botton the side above t

  • Magenta banding on some files after importing

    I am having a problem where just a few of my files show heavy magenta banding after importing into Lightroom 4.1.  I am importing RAW files from a Nikon D800. I don't think it's the camera because most of my files are fine.  And I don't think it's th