Problem changing permission using EAC (time-consuming error)

Hello,
i tried to change the PF permission tree using EAC and selecting "Apply changes to this public folder and all its subfolders." The process stuck at around 80%, and now if i try to change permission on every PF i have the following error:
The operation can't be performed because you're running another time-consuming operation. Try again when it completes.
I can manage the permission using EMS, but i'd like to solve that problem.
Thanks for help!

At the end i recycled the iis worker process related to EAC.
Now i can change again PF permissions, but just one by one...

Similar Messages

  • Problem Occrued in Data loading (Time Stamp Error)

    Hi,
    Iam scheduled  info package   after its showing time stamp error in the monitor menu header status is red and details menu 0 records . time stamp error in the source system.
    my problem is i have all genric transaction data sources i checked in R/3 in RSA3 and Rsa6 i excuted in that particular data sources are active and its contain some records also.
    before loading the data i replicated all data sources these all active in BI system. but once scheduled the infopackage all data sources going to in active status.
    i Tried  to Execute T code  SE38  in BW give programme name as RS_Transtrucuture_activate .
    but i dont have authorisation these program to excute.if i want get authorisation i have to wait 3 days.
    please suggestme another solution procedure.
    Regards,
    Diwa(Devakar tati Reddy)

    Hi,
             I am not sure about what BW version are you using.  I hope you are using 3.5 or low.  After Datasource replication you need to activate your transfer structure / infosource.    I understand that you dont have authorization to run the SE38 program to activate the transfer structure.  But, you can also try to activate each transfer structure/infosource individually through edit mode of the same.  This is the only way out if you donot have the authorization for SE38. 
    Regards
    Kishore

  • Help!!! JavaFX problem changing video using MediaPlayer Object

    Hello,
    I hope you can help me. I'm creating a player that constantly displays a playlist of videos. After some time the system seems to go in deadlock changing video. The problem I have encountered is with the release of JavaFX 1.2, JavaFX 1.3 and JavaFX 1.3.1. The code I used is as follows:
    package fx.classes;
    import javafx.scene.Scene;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaView;
    import javafx.scene.media.MediaError;
    import javafx.stage.Stage;
    import java.lang.System;
    import java.lang.Thread;
    import javafx.scene.control.Button;
    import javafx.scene.control.Tooltip;
    var source = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/cartoon.mp4";
    var source2 = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/spot30.mp4";
    //var source = "C:/Movie/test/test1.avi";
    //var source2 = "C:/Movie/test/test2.avi";
    var i = 0;
    public class MP extends Scene {
    var md: Media = Media {
    source: source
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    var mediaPlayer: MediaPlayer = MediaPlayer {
    //autoPlay: true
    //repeatCount: MediaPlayer.REPEAT_FOREVER;
    startTime: 100s
    onEndOfMedia: function() {
    changeMovie()
    onError: function(me : MediaError) {
    if (mediaPlayer.status == MediaPlayer.PAUSED) {
    println("Stato: pausa");
    mediaPlayer.stop();
    else {
    print(mediaPlayer.status);
    println("Stato: ");
    onStalled: function(du : Duration) {
    print( mediaPlayer.status );
    media: md
    override var content = [
    MediaView {
    //x: 10
    //y: 10
    //fitWidth: 400
    //fitHeight: 300
    //fitHeight: bind height
    //fitWidth: bind width
    preserveRatio: true
    mediaPlayer: bind mediaPlayer
    function play() {
    mediaPlayer.play();
    function stop() {
    mediaPlayer.stop();
    function pause() {
    mediaPlayer.pause();
    function printStatus() {
    print( mediaPlayer.status );
    protected function changeMovie() : Void {
    mediaPlayer.stop();
    var ss = source;
    if ((i mod 2) != 0) {
    ss = source2;
    md = Media {
    source: ss
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    mediaPlayer.media = md;
    mediaPlayer.play();
    i = i + 1;
    var sample: MP = MP {
    public function run( args: String[] ) {
    var stage:Stage = Stage {
    //title: bind "CutePlayer 3: {cutePlayer.myPlayer.media.source}"
    title: bind "Media Player: Big Back Bunny"
    width: 1024
    height: 600
    scene: bind sample
    sample.printStatus();
    sample.play();
    The same problem seems to be also using the project Mediabox (between JavaFX demo). Does anyone know how you can solve the problem?
    Thank you in advanced,
    Domenico

    Hello,
    I hope you can help me. I'm creating a player that constantly displays a playlist of videos. After some time the system seems to go in deadlock changing video. The problem I have encountered is with the release of JavaFX 1.2, JavaFX 1.3 and JavaFX 1.3.1. The code I used is as follows:
    package fx.classes;
    import javafx.scene.Scene;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaView;
    import javafx.scene.media.MediaError;
    import javafx.stage.Stage;
    import java.lang.System;
    import java.lang.Thread;
    import javafx.scene.control.Button;
    import javafx.scene.control.Tooltip;
    var source = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/cartoon.mp4";
    var source2 = "C:/Progetti/OBA/workspaces/apps/Dove6FXVideo/res/video/content/spot30.mp4";
    //var source = "C:/Movie/test/test1.avi";
    //var source2 = "C:/Movie/test/test2.avi";
    var i = 0;
    public class MP extends Scene {
    var md: Media = Media {
    source: source
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    var mediaPlayer: MediaPlayer = MediaPlayer {
    //autoPlay: true
    //repeatCount: MediaPlayer.REPEAT_FOREVER;
    startTime: 100s
    onEndOfMedia: function() {
    changeMovie()
    onError: function(me : MediaError) {
    if (mediaPlayer.status == MediaPlayer.PAUSED) {
    println("Stato: pausa");
    mediaPlayer.stop();
    else {
    print(mediaPlayer.status);
    println("Stato: ");
    onStalled: function(du : Duration) {
    print( mediaPlayer.status );
    media: md
    override var content = [
    MediaView {
    //x: 10
    //y: 10
    //fitWidth: 400
    //fitHeight: 300
    //fitHeight: bind height
    //fitWidth: bind width
    preserveRatio: true
    mediaPlayer: bind mediaPlayer
    function play() {
    mediaPlayer.play();
    function stop() {
    mediaPlayer.stop();
    function pause() {
    mediaPlayer.pause();
    function printStatus() {
    print( mediaPlayer.status );
    protected function changeMovie() : Void {
    mediaPlayer.stop();
    var ss = source;
    if ((i mod 2) != 0) {
    ss = source2;
    md = Media {
    source: ss
    onError:
    function (e: MediaError) {
    println("got a MediaPlayer error : {e.cause} {e}");
    mediaPlayer.media = null;
    mediaPlayer.media = md;
    mediaPlayer.play();
    i = i + 1;
    var sample: MP = MP {
    public function run( args: String[] ) {
    var stage:Stage = Stage {
    //title: bind "CutePlayer 3: {cutePlayer.myPlayer.media.source}"
    title: bind "Media Player: Big Back Bunny"
    width: 1024
    height: 600
    scene: bind sample
    sample.printStatus();
    sample.play();
    The same problem seems to be also using the project Mediabox (between JavaFX demo). Does anyone know how you can solve the problem?
    Thank you in advanced,
    Domenico

  • Problem changing startup disk one time

    My main OS is 10.8.5 but have second hard drive with OS 10.6.8 on it for use with older applications.  I've never had trouble rebooting in 10.6.8 when necessary by holding down the option key.  Suddenly it doesn't work; the computer just hangs with a gray screen.  Nothing has really changed in my setup in the few weeks since I've last rebooted in 10.6.8.  I've verified both startup disks and repaired permissions on both.
    Alfred
    Mac Pro 2 x 2.4 GHz 6-core Intel Xeon
    12GB RAM

    Yes to both questions.  Since posting my question, I tried resetting the PRAM (in 10.8.5) and the result was that the computer wouldn't start in either OS; it would just get to the gray screen and hang.  I found an Apple document that suggested remedies.  Starting while holding down command-R or shift didn't work.  Then I unplugged all my peripherals and the computer started normally.  I followed the procedure of reconnecting one peripheral at a time (rebooting each time) and didn't find the culprit.  I then went to the next procedure: adding them one at a time (again rebooting each time) and this didn't find the problem either.  Now I can reboot normally in either my preferred 10.8.5 or the alternative 10.6.8, but I'm a little uneasy since I don't know what the problem was and never really fixed or changed anything.

  • Problems changing colour using Graphics class in java.awt

    Hi,
    The problem only happens when more than two images are on a panel. In this case, I have to strings that are drawn. The first drawn string is called "A" the second drawn string is called "B". However, when i change the colour of "B" to let's say Red, the panel erases the letter "B" and insteads changes "A" to red. How can I fix this so that when the user chooses the colour red it changes the colour of the latest drawn string and not the first one. please help!!!!
    import java.awt.*;
    public class StringPanel extends GBPanel
         private String shape = "clear", str;
         private int x, y;
         private Color color = Color.black;
         public void paintComponent(Graphics g)
              super.paintComponent(g);
              g.setColor (color);
              if(shape.equalsIgnoreCase("draw string"))
                   g.setColor(color);
                   g.drawString(str, x, y);
              else if (shape.equalsIgnoreCase("exit"))
                   System.exit(0);
         public void drawCurve(Color color)
         this.color = color;
         repaint();
         public void drawString(String shape, String str, int x, int y)
              this.shape = shape;
              this.str = str;
              this.x = x;
              this.y = y;
              repaint();
         public void drawString1(String shape, String str, int x, int y)
              Graphics g = getGraphics();
              g.setColor(color);
              if (shape.equalsIgnoreCase("draw string"))
                   g.setColor(color);
                   g.drawString(str, x, y);
              else
                   repaint();
    }

    well, as I said, I can't remember what the update method thing was for... I think it was related to not clearing the screen first.
    Anyway, if you maintain a list of objects that should be drawn and then in the paintComponent method, loop thru the list of objects and redraw them, it will work. Then you change the state of an object and call repaint. When you are going to change color, you need to, in effect, redraw the entire affected area. Now this can be done partially with clipping, but it's complicated to deal with that. So the simplest way is just redraw everything on repaint.

  • Adobe updates: I've gotten error messages when trying to download pdfs (very annoying). Read somewhere that mac os has problems with the adobe extensions, thus, causing error messages from adobe. I ignore the updates. Should I?

    Hi All,
    I have stopped updating adobe software b/c I read that the adobe update software inserts extensions into the mac software system, causing annoying/time consuming error messages when downloading new pdfs. I get adobe update notices 2-3x/week. What do you recommend? I use an iMac OS 10.94.
    thanks for your help.

    Preview will do all that and is part of the OS.
    Mac Basics: Preview app views and edits PDFs and images
    With Adobe, if it's working, then it should be fine. See here
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Macintosh

  • HT3728 Firmware Update 7.6.4 Error: I uploaded the 7.6.4 firmware update today, and received an error message as it was finalising. As I am using my Time Capsule as the Airport router, I am now no longer able to access it to try to resolve the problem. He

    Dear Support Team,
    I agreed to the Time Capsule 7.6.4 update today, but as it was completing, I received an error. It said to close the page and try again.
    I use my Time Capsule as my Airport wireless router and now can't access the Time Capsule to re-upload the Firmware update.
    Has anyone else had this happen?
    Is there a way to resolve the problem?
    Do I need to hardwire the Time Capsule? Then what?
    Would really appreciate some help!!
    Thanks everyone.

    Factory reset the TC and it should come back to life.
    The Factory Reset.
    Power down the TC.
    Hold in reset. and keep holding it in. Be Gentle! It is a tiny surface mount switch with a plastic lever.. Attempting to push it out the other side of the TC will not make the switch turn on better.
    (I fix TC and have several reset levers bent over and jammed or broken off).
    Power on the TC.. remember with the reset held in.. this needs three arms.. a friend or power switch you can get to with your feet..
    Keep holding in reset for about 10sec until the front LED flashes rapidly.
    Release reset and wait .. the boot will be slow as it deletes previous setting.. only from router side and pulls out the factory defaults. No files are deleted on the hard disk.. but the name of the TC may change.
    As a rule .. wireless is not reliable enough for mission critical work like firmware upgrades.. (Heck I don't think it is reliable enough for backups).
    Apple doesn't insist on wired connections.. some other manufacturers do.. and post warnings not to attempt it over wireless. Warnings inevitably read after the failed firmware update btw.. so perhaps Apple have decided to just save themselves the hassle.
    I believe it is just good practice to use ethernet for any time that sitting on a branch.. whilst sawing it off (ie failure will kill any future access).. means you always use ethernet for any setting up of a wireless router.. but you see I am old.. with grey/white hair.. and too many dead modems and routers around me.

  • TS1550 My time capsule will not back up. There is a time machine error message that states "The backup disk image "/volumes/Backup/Jane's MacBook Pro.sparsebundle" is already in use. How do I correct this problem?

    My time machine will not back up. I get a Time Machine Error message that reads: "The backup disk image "/Volumes/Backup/(myname)'sMacBook Pro.sparsebundle" is already in use.
    I have not been able to back up for two weeks, I think this occurred after an update to the operating system, but I am unsure.
    How do I correct this problem?

    Have you tried restarting the computer? Also, see Time Machine Error from this pages sidebar under More Like This.

  • Since recent updates, I have noticed that my apps close automatically when I am distracted. In some cases it is time consuming to sign back in and get back to the task I was doing. Is it possible to change a setting so the apps will stay open?

    Since recent updates of iOS, I have noticed when using my iPad that my apps close automatically when I have to leave the room or am otherwise distracted for a few minutes. It is sometimes time consuming to sign back in and get back to the task where i left off. Is there a setting I can change so it will keep the apps open until I am ready to close them? Thanks for your help.

    Did you have this problem before Restoring you iPad?
    If you did then did you restore with a backup. You may have reinstalled something that is conflicting in this back up
    If not then sounds like either something went array with the clean install or a hardware issue.
    I know it's long winded but have you tired a clean install then downloading the apps again?
    PJRS

  • How do I change permissions for the documents and files on my Mac Book Pro after I re-instaalled the HD using a Time Machine back-up?

    I had to re-install the HD on my Mac Book Pro. I used a Time Machine back-up for all the apps and files. Most were restored, However, I cannot unlock a number of them. I tried changing the permissions using Get info but it is not working. I am using the latest version of Moutain Lion OSX.

    Linc:
    Very helpful suggestion and response, Thanks for pointing out that it is a permission issue. I am working through the issue and resolving my problem.

  • 2nd time Loop error in rejection reason/changes req

    Hello experts,
    I have created an wf with loop step.
    In that loop branch,m displaying a doc in approvers inbox, then i have put a decision step with 2 button - 'Approve' and 'Changes req'.
    For button Changes req, loop will continue.ok
    In tht changes req branch, i hv put a task of BO SOFM, method- create for approver so tht he can enter thr wht r the changes he wants.
    thn i hv put task as BO SOFM, method-display for initiator so tht he can see the changes req.
    thn doc will opened in edit mode for initiator to make req changes.
    thn it will agn go back to approver for approval.
    he will agn get the decision screen with 2 buttons.
    now while testing this....this all worked fine when approver clicked in button 'changes req' in decision box..after tht SOFM create worked fine.
    But during 2nd time whn approver is checking the doc 2nd time and still he again wants some other changes to be done so he will agn click on button 'changes req'. this 2nd time tht SOFM-create is not working and wf goin to error as -
    1. Notification of completion cannot be generated
    2. Problems occurred when generating a mail
    3.Error '9' when calling service 'SO_OBJECT_SEND'
    4.Error handling for work item 000000006050
    PLz suggest how this can be solved.
    Best Regards
    Nitin

    I think you might have to use the EDIT method of SOFM Business Object as you are going to change the existing document.
    Thanks
    Arghadip

  • Can't change permission on Time Capsule files and folders

    I am using my Time Capsule as a storage device that everyone on my network can access, and I also have a fairly small (~5000 songs) iTunes Library as well. This was all working fine, until I decided to try to get a second computer, beside my MacBook Pro (8,1) to connect to the iTunes Library. Suddenly strange things started happening, like the network dropping at seemingly completely random times, certain people being kicked of the network, etc. So then I thought "well maybe its because of the iTunes Library." So I did a 'Get Info' to the Library folder, named iTunes Library, and it showed this:
    This didn't seem too strange, except for the (unknown) name. I then learned (http://pondini.org/TM/E10.html) that this may actually be causing the problem, so I hit the minus button while hovering over it, only to see this:
    Now, as far as I can tell, this shouldn't be happening. So I tried it on many different computers (10.8.4, 10.6.8, 10.7.5, among others), and they all said this. Then, back on 10.8.4, I decided to try to add my name, even though it said that everyone can read and write, and it said this:
    Now I knew this was strange, since it has never, ever happened to me since OS 7. What was also strange, instead of showing the usual selection window, it asked me to type in my username, like so:
    This happened on every computer, and in every directory and every file (or at least the couple dozen I tried, including ones outside the Library folder that I had already changed permissions on before normally), so I knew something was definetly up. So of course, I turned to my friend, the Terminal. I tried doing sudo chmod 555, 755, 775, 777, and a+x, and none of them worked, again, on multiple different files and folders. Also, since I have connected the second conmputer to the Library, it seems as though the file iTunes Library.itl is no longer executable, because it looks like this:
    Also, no one but me can connect to it anymore, even though they can all see it. Any help would be greatly appreciated.
    EDIT: Sorry for the low-res images, Apple seems to have done something to them

    Verify volume failed with error Could not unmount disk (-10000)
    That could happen if there is another process that is presently accessing the volume.  I don't think it related to the volume having data corruption.  The fact that is it a "server" may be relevant.
    In the time that you have had this problem, has it been shut down and restarted? 
    You can also try restarting it with the Shift key held down.  That should do a Safe Mode startup, if an Xserve acts like a regular Mac.
    http://support.apple.com/kb/HT1564
    http://support.apple.com/kb/HT1455
    The Safe Boot will do some maintenance and tests during startup, and start up with only essential proceses running.  Try accessing that folder now.  If you can access it, you should probably save it off on another volume, such as an external drive, so that you have a current backup.
    Try running Repair Disk Permissions and Verify Disk again in Disk Utility.  Repair Disk Permissions will probably give you a lot of messages; they are usually just "informational" so don't be concerned.  However, if Verify Disk reports an error, that is a serious problem that needs to be addressed.
    Edit:  If the volume being tested is NOT the startup disk, then Repair Disk Permissions will be disabled.  It only applies when there is a system installed on that volume.

  • Hello! i am using ipad n i am not able to connect to itunes store.Whenever i open itunes it syas "cannot connect to itunes store".i tried resetting the network settings n also tried changing the dat and time settings as mentioned but it still doesnt work!

    hello! i am using ipad n i am not able to connect to itunes store.Whenever i open itunes it syas "cannot connect to itunes store".i tried resetting the network settings n also tried changing the dat and time settings as mentioned but it still doesnt work!please help!

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Problem using webservice method consumer proxy with rawdata from abap

    Hello Gurus,
    I am struggling with an error using a proxy consumer service from ABAP. The proxy was generated using the WSDL from the web service provider. For a specific method we need to send a rawstring as seen bellow:
    The file to be sent on this call is a ZIP file XAdES-BES signed and on BASE64. I’ve implemented the proper code to get the original file from local PC, and convert it to BASE64 before moving the content to the webservice structure and call the service proxy. At SOAMANAGER I also configured the webservice and the proper port with the WSDL:
    The communication is working properly but my problem is with the binary content. When calling the webservice the response is that the structure of the file is wrong. I found it very strange since I used a tiny SOAPUI project with the same WSDL and it worked with no problem.
    After debugging I could see that the content moved to the rawdata string before calling the proxy does not match the content that I can see from the call payload on web services util (srt_util)!
    So the sample code for my method:
    * get the file from the specified folder
    call function 'GUI_UPLOAD'
    exporting
    filename                = ld_zipfilename
    filetype                = 'BIN'
    importing
    filelength              = zip_size
    tables
    data_tab                = t_zip_data[]
    exceptions
    file_open_error         = 1
    file_read_error         = 2
    no_batch                = 3
    gui_refuse_filetransfer = 4
    invalid_type            = 5
    no_authority            = 6
    unknown_error           = 7
    bad_data_format         = 8
    header_not_allowed      = 9
    separator_not_allowed   = 10
    header_too_long         = 11
    unknown_dp_error        = 12
    access_denied           = 13
    dp_out_of_memory        = 14
    disk_full               = 15
    dp_timeout              = 16
    others                  = 17.
    * convert to string
    clear buffer_zip.
    call function 'SCMS_BINARY_TO_STRING'
    exporting
    input_length = zip_size
    importing
    text_buffer  = buffer_string
    tables
    binary_tab   = t_zip_data[]
    exceptions
    failed       = 1
    others       = 2.
    * encode base 64
    perform encode_base64 using buffer_string
    buffer_zip. 
    form encode_base64 using in_string type string
    out_string type xstring.
    data: l_sbuff     type string.
    * convert the file to BASE64
    call method cl_http_utility=>encode_base64
    exporting
    unencoded = in_string
    receiving
    encoded   = l_sbuff.
    call function 'SCMS_STRING_TO_XSTRING'
    exporting
    text   = l_sbuff
    importing
    buffer = out_string
    exceptions
    failed = 1
    others = 2.
    endform.                    "encode_base64
    calling the webservice:
    l_input-xxxx-dokument = buffer_zip.
    try.
    call method l_proxy_test->webservice
    exporting
    input  = l_input
    importing
    output = l_output.
    catch cx_ai_soap_fault into lr_exc_soap_fault.
        endtry.
    From my understanding rawstring should be the same as ABAP xstring. If I debug the program and check the content of the  l_input-dokument before calling the proxy I get binary content: “Izw/eG1sIHZlcnNpb249IjEuMCIgZW5jb2Rpbmc9InV0Zi04Ij8…” that is in fact correct
    If I check the payload after call I can see that the binary content sent on the XML is not the same, in fact it is totally different: ”SXp3L2VHMXNJSFpsY25OcGIyNDlJakV1TUNJZ1pXNWpiMlJw…” !!
    I’ve tried a lot of different conversions, changed configuration on the communication, port, etc and nothing seems to work. I really can’t figure out why the binary content on the call is not the same as I move to the webservice structure.
    If I use the project from SOAP UI and send the proper binary content, that is “Izw/eG1sIHZlcnNpb249IjEuMCIgZW5jb2Rpbmc9InV0Zi04Ij8…” it works perfectly and the response is successfully.
    Anyone has a clue what could be causing this?
    Appreciate any kind of input.
    Regards,
    João Silva Pinto.

    Anyone? Any clue would be appreciated.

  • Flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    flash player has been installed multiple time without errors but bbc news website and even flash player help say it isn't. How do i get out of this loop? - using windows 7 ultimate and latest IE11

    I have had the same problem for WEEKS and I cannot access any sites that use Flash. Flash has been installed on this computer since I bought it in 2012. I have allowed auto updates but for weeks the updates never get past Step 2 - is this because I do NOT want the Google Tool bar? I use NO tool bars as there is only 6 inches of vertical screen space. Is this because I uncheck wanting Chrome as a default browser?  It is already installed, I just don't use it.  I came to this site and ran the check is it installed and the system says it is either not installed or not enabled. Version 14 just downloaded about 30 minutes ago - but did not progress to Step 3 although a pop up screen came up with a finish button, which I clicked. WHAT is the problem and how do I fix it?  If this were just a compatibility bug between IE11 and Adobe they have had plenty of time to fix it.
    Stephanie HC

Maybe you are looking for

  • How to send the body of mail in html format using servlet

    Hi i developed an servlet using sun.net.smtp.SmtpClient package,my servlet receiving data from an form,i can able to send mail successfully,but my mail body part is in the text format,but i would like to send it as an html format,for ex <input type="

  • How do I reorder data within a Contacts card?

    I want to reorder the data within individual Contacts cards, e.g., repositioning address A above address B. It ought to be as simple as highlighting a given line and pressing the keyboard's Up or Down arrows, but that doesn't work, and I can't find a

  • Quicktime errors during install, uninstall, or run

    Quicktime errors during install, uninstall, or run. No error code. It just says it encountered an error and must exit.

  • Distribution rule creation is not possible in CJIC after upgradation of ecc

    We are using  settlements for PS in ECC 6.0. Trying to partial settlement for WBS from CJ70 tcode, unable to find Final Settlement button/ icon where we give amount for settlement after some service patch upgrade .Can any one pls suggest any alternat

  • Photos in Hotmail emails do not appear

    photos in Hotmail emails do not appear. Windows XP Pro all updates all current, Firefox latest version, all areas checked for photos and blocked websites. Gone through all the settings, no change.