Incompatible security error 2048 no description and status = 0 HTTP event

SUMMARY:

Inconsistent: The swf file performs a url request call a php file and returns a security error 2048 with no description (securityErrorEvent.text = "") and the HTTPStatusEvent = '0 '.

DETAIL:

My swf calls a php file which returns a JSON object. The swf file php and database, that are all on the same area. The cross domain in place policy has no restrictions. In the host swf file, index.php, I: < param name = "allowScriptAccess" value = "always" / >

Myself, as well as a few others on different machines (Mac/pc) and browsers (safari, ie, firefox, chrome) have had no security problem with the swf (on the server).

However, once I have inform the public on my site, I have heard a lot of people that is not the site does not work for them.

This is a problem that is difficult to recreate and I only managed able to consistently reproduce the error on the pc of a friend under Chrome, although it works very well on his second pc also running Chrome.  Other people who tried to help me to test, say it does not work at any given time, and then later, it works for them (when no changes have been made to the swf and php file).

Even if I was able to consistently reproduce the error on my friend's computer, I'm not able to solve the problem, but at least was able to tell that it was a security error or lifting and the HTTP status event has "0".

TRY IT YOURSELF:

You can see if the problem exists for you if you go to http://www.leifilvedson.com/test.php and then click on 'Yes' or 'no' to 'full screen?' and then click 'about '.   On the left hand side of the screen will be small text lines that come out of trace that I use to debug.  This is where you will see the security error 2048 without a description... If that is indeed a problem on your machine.

Any suggestions?

Thank you

Leif

And Yes... chagning parent rather than using absolute paths has fixed the problem. But I don't understand why this could be a problem when the cross-domain policy is wide open... and why the problem would be incompatible.

Tags: Adobe Animate

Similar Questions

  • Error #2048: Security sandbox Violation

    I worked on it for almost 2 days now, solid with no luck.  Depletion of each article and the suggestion that I ran across, then I hope that the community can help!  In my quest for an answer to this, I hope he can serve a dual purpose and become useful information for other developers is going in this direction.  For some, you can see the contents and figure TL; DR, but I'm hoping to answer any question that might otherwise span multiple messages.

    The goal is to use a socket "binary" for communication between a Flash application and a custom socket server I'm working.  I soon discovered that you must have a file "crossdomain.xml" to the Flash Application communicate via sockets.

    I develop on Windows 7 64 bits, using Flash Professional CS6, Microsoft Visual Studio 2012 and hosting under IIS.

    Eventually I plan on hosting the Application Flash crossdomain.xml on a remote server, but in order to develop what I wanted to try and keep everything on a single development computer.

    My political module Socket server receives the request for the Flash Application and returns the correct answer.

    Incoming packets using Debug-> Debug Movie--> in Flash Professional:

    GET HTTP/1.1 crossdomain.xml

    Accept: text/xml, application/xml, application/xhtml + xml, text/html; q = 0.9, text/plain; q = 0.8, text/css, image/png, image/jpeg, image/gif; q = 0.8, application/x-shockwave-flash, video/mp4; q = 0.9, flv-application/octet-stream; q = 0.8, video/x-flv; q = 0.7, audio/mp4, application/futuresplash, * / *; q = 0.5

    x-flash-version: 11,2,202,228

    User-Agent: Shockwave Flash

    Host: 127.0.0.1:843

    Incoming packets by using control-> test movie-> in the browser:

    Bag #1

    < policy-file-request / >

    Bag #2

    GET HTTP/1.1 crossdomain.xml

    Host: localhost:843

    Connection: keep-alive

    User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537,1 (KHTML, like Gecko) Safari/537,1 of Chrome/21.0.1180.89

    Accept: * / *.

    Accept-Encoding: gzip, deflate, sdch

    Accept-Language: en-US, en; q = 0.8

    Accept-Charset: ISO-8859-1, utf-8; q = 0.7, *; q = 0.3


    The response that is returned:

    <? XML version = "1.0"? >

    <! DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd" > ""

    < cross-domain-policy >

    < allow-access-from ports = "" * "domain =" * "/ >"

    < / cross-domain-policy >

    At first I wasn't sure if it worked, until I pulled a copy of a violin and looked at the packages being requested and returned.  Initially I had more entries, but as I read more the crossdomain.xml I discovered all the inputs excluded would be lacking at current values so I started to take them off to test crossdomain.xml configurations, that I've run across.

    Return all the XML content through the socket connection did not work, I found out later that I had to create a HTTP header and then add the XML content.

    I was able to confirm the Application Flash Professional CS6 received the crossdomain.xml when I was running the Application in Debug Mode (debug->-> Debug Movie in Flash Professional) and the generated output the following warning:

    Warning: 127.0.0.1 domain does not specify a meta-policy.  'Master only' default meta-policy for the application.  This configuration is deprecated.  See http://www.adobe.com/go/strict_policy_files to solve this problem.

    I know that this is easily fixed by simply using a file as crossdomain.xml:

    <? XML version = "1.0"? >

    < ! DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd" > ""

    < cross-domain-policy >

    < site permitted-cross-domain-policies of control = "master only" / >

    < allow-access-from ports = "" * "domain =" * "/ >"

    < / cross-domain-policy >

    Source ActionScript code:

    private void EstablishConnection(): void {}

    var sock: Socket;

    Security.allowDomain("*");

    Security.loadPolicyFile ("http://127.0.0.1:843 / crossdomain.xml" "");

    socks = new Socket();

    sock.addEventListener (Event.CLOSE, closeHandler);

    sock.addEventListener (Event.CONNECT, connectHandler);

    sock.addEventListener (IOErrorEvent.IO_ERROR, ioErrorHandler);

    sock.addEventListener (SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);

    sock.addEventListener (ProgressEvent.SOCKET_DATA, socketDataHandler);

    sock.connect ("http://127.0.0.1", 8080 ");

    }

    private void closeHandler(event:Event):void {}

    trace ("closeHandler:" + event);

    }

    private void connectHandler(event:Event):void {}

    trace ("connectHandler:" + event);

    }

    private void ioErrorHandler(event:IOErrorEvent):void {}

    trace ("ioErrorHandler:" + event);

    }

    private void securityErrorHandler(event:SecurityErrorEvent):void {}

    trace ("securityErrorHandler:" + event);

    }

    private void socketDataHandler(event:ProgressEvent):void {}

    trace ("socketDataHandler:" + event);

    }

    When I run the Flash Application in debug mode, the following content is displayed in the output window:

    ioErrorHandler: [IOErrorEvent type = "ioError" bubbles = false cancelable = false eventPhase = 2 text = "error #2031: error Socket."] ["URL: http://127.0.0.1"]

    Warning: 127.0.0.1 domain does not specify a meta-policy.  'Master only' default meta-policy for the application.  This configuration is deprecated.  See http://www.adobe.com/go/strict_policy_files to solve this problem.

    securityErrorHandler: [SecurityErrorEvent type = "securityError" bubbles = false cancelable = false eventPhase = 2 text = "" error #2048: security sandbox violation: file:///C|/Source/FlashCS6/AS101.swf cannot load data from http://127.0.0.1:8080. ""]

    [UnloadSWF] C:\Source\FlashCS6\AS101.swf

    Debug the session is over.

    The "ioErrorHandler" is almost instantaneous on the output, while the "securityErrorHandler" takes maybe 10 to 15 seconds before it takes place.  I understand that this is due to the asynchronous nature of the Flash engine.

    When I'm not in the code in the debugger, I noticed that the request to load the policy file does not run as long as the Application is really trying to connect to the defined URL and port.  I think that might be the cause, but not sure.

    In an effort to make this work, I have:

    • Added the SWF and the project file to the global security settings
    • Publication parameters changed in the 'network access only '.
    • added " " http://127.0.0.1 "for Global security settings "
    • Under publication settings, enabled "permit debugging".
    • Adding the inbound and outbound rules in the firewall of Windows 7 to TCP 8080
    • Tried several configurations of crossdomain.xml
    • Check the rules of the "mms.cfg" to ensure that there is no blockage
    • Characteristics of record created and activated in 'mm.cfg', but the log files generated nothing more than what already appeared in Flash Pro CS6 exit window
    • '127.0.0.1' changed 'localhost', get the same results

    On the note of global security settings, I discovered that there are 2 separate places.

    • If you press 'Ctrl + Enter' and right-click your Flash application, "global security settings" here a dialog box of windows with the options that you can configure
    • There is another which is located at the following ADDRESS

    http://www.Macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l #117502

    Do you need to put them both?  I did, in order to solve this.  I guess one comes into play on your local workstation and the other is based on the web only.

    I ran across some references to the Type of sandbox, which could cause potential problems of this kind.  In the trace, until the socket connections are made, I traced the current Type of the Sandbox and it was "localTrusted".

    Another article talked about using your public IP address from your ISP, instead of localhost or 127.0.0.1, but it defeats the purpose of local development.

    I know that the socket communication works on the workstation local, based on 2 trials.  The first being the LoadPolicyFile is run on a socket request and the second being, I tested the Server Socket with a non - Flash Client App communication.

    I am now at a loss and stuck in the mud.  Any help appreciated, and I hope it sheds some light to others going down this same road.

    Thank you.

    Well, the system is not perfect, but it does not work once you lubricate all moving parts with the right oil. =)

    I started by using a sample of Microsoft for asynchronous Server Socket to create a Client and a server, confirming that the system has worked.

    Link: http://msdn.microsoft.com/en-us/library/fx6588te.aspx

    To try to solve this problem, I discovered a policy + socket server written in java.  It's not pretty, but they have a warning on the page saying it is extremely poorly written, but it works.

    Link: http://efreedom.com/Question/1-2951030/AS3-Java-Socket-Connection-Live-Flash-Local-Java

    I had nothing to lose, so I created a restore point, installed the Java SDK and the Eclipse IDE for Java EE Developers.  Created a new project and hacked the sample to match the ports I used and hit 'Play', out of the Flash project and he displayed in a browser.  For the first time, I've witnessed events fire off to connect and close.  In shock now. Laughing out loud.

    After some trial and error with my server, I discovered what needed to change.  The first had to do with how being constituted "AddressFamily.  The order of the day was change the IP for IPEndPoint from a source of an AddressList object (see example of Microsoft) to "IPAddress.Any.  The last item was a bit strange, because the server did not seem to pick up all new connections until I set the listener with MaxConnections.

    Here is a screenshot of the final c# code where the changes have been made.

    IPHostEntry ipHostInfo = null;

    IPEndPoint localEndPoint = null;

    Try

    {

    ipHostInfo = Dns.GetHostEntry (Dns.GetHostName ());

    localEndPoint = new IPEndPoint (IPAddress.Any, _Port);

    _SocketListener = new Socket (localEndPoint.Address.AddressFamily, SocketType.Stream, ProtocolType.Tcp);

    _SocketListener.bind (localEndPoint);

    _SocketListener.listen ((int) SocketOptionName.MaxConnections);

    ...

    It seems relatively simple, but all it takes is 1 config parameter incorrectly and the sails of server at a different level than where the Flash works.

    I founded the NPS server off the coast of the same design.  What I don't understand, is despite the design original not to recognize the connections on the server of a Flash, Flash application policy still caught crossdomain profile that was sent back across port 843.  The content is only available in the engine (a local file does not exist) and I was able to validate this function changes on the crossdomain content sent through and re - compile and restart the server for testing, I did.

    Error #2048 resulted from the Socket server not accepting the connection or to be available for connections.  Once I set the policy server that I was always getting error #2048 until I corrected the Socket server connections.  Initially, I had put a HTTP header to the content of the packet sent with the cross-domain policy, but later I deleted and only send the XML contents now.

    The design I had in mind of all work now.  Multiple connections and communication in real time via sockets.  I have no need for video or audio streaming, data only.  I hope this info helps anyone else who may face the same challenges.

    See you soon!

  • A security update for windows vista (KB2665364) cumulative hotfix for Kiibits (KB2647518) Activex and update Windows vista ((KB2679255) I get the error codes 800736B 3 and B 8007371)

    A security update for windows vista (KB2665364) cumulative hotfix for Kiibits (KB2647518) Activex and update Windows vista ((KB2679255) I get the error codes 800736B 3 and B 8007371)  I can't find answers and I'm not tech saavy.  Every day for a month updates failed to install

    Hello

    I would suggest trying the following methods and check if it helps.

    Method 1:

    In the following article from Microsoft Fixit to reset Windows Update components and check if the problem persists, run the fixit.

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058

    Warning: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base: http://windows.microsoft.com/en-US/windows-vista/Back-up-the-registry

    Method 2:

    Put the computer in a clean boot state, and then try to install the updates and check if it works.

    How to troubleshoot a problem by performing a boot in Windows Vista or Windows 7:

    http://support.Microsoft.com/kb/929135

    Note: once you have completed troubleshooting, try the procedure described in step 7 to reset the computer to start as usual.

    Method 3:

    Try to download updates from the Microsoft Downloads Web site and check.

    http://www.Microsoft.com/download/en/default.aspx

    Hope the information is useful.

  • Muse of update and changes made to the homepage now get this error... error message by calling the selection function: security error: cannot read the iframe content of html document

    Changes made on my homepage and it looks a lot like the preview in the browser, but when I upload it to my server I get the below error message. Help, please!

    muse-error.jpg

    It is common for opening a locally implemented Web site containing social widgets or any other third part code to generate errors of security because it will be loaded in the browser using the file:// Protocol. When a site is presented as a preview of Muse (Muse or in the browser) or transferred to a hosting provider, it is served using the http:// (or https://) Protocol and security errors do not occur.

    Frequently, the code of third party that comes with using social widgets or any other things that rely on the third party and/or services code is not designed to work through the file:// Protocol.

  • Security Center service is disabled and cannot depend on

    My service center security indicates that it is turned off and it wont let me turn it on, how can I turn on?

    Hello jackie,.

    Go to start / Control Panel / Administrative Tools / Services and scroll to Security Center. Click the Dependencies tab and go to each of these dependency services and click dependencies tabs until you have no more. Knit then back and make sure that each listed as a dependency service is enabled and started. Continue along each string until you finally get back to the center of security and make sure that it is enabled and started. Then do exactly the same thing for the Security Accounts Manager service. While in services, also disable and stop the service of the Defender. Restart when done and see if that helps the situation.

    MSE should start automatically in all cases (in normal mode). Even if the Security Center still has a problem, open and try to start the MSE (if it is not already started and running). If so, at least, you're protected even if the Security Center does not have to "prove" to you.

    If this does not work, try a boot minimum http://support.microsoft.com/kb/929135. If the problem goes away then it's just a matter of tracking down the culprit at the origin of the problem. Follow the procedures described in the article. Once found, remove, delete, disable or uninstall. Once don't forget to reset the operating system to normal status as described in the procedures. If the problem occurs in clean mode then just restore the system to normal and reboot - this solution will not work.

    If this does not work, we will check your system and hard disk for corruption files and try to see if there is an event that will inform you:

    Go to start / all programs / accessories / command prompt and right click on command prompt, and then click Run as administrator.

    , Type sfc/scannow go and let it run.  It will scan and try to the difficulty of some of your system files.  If all goes well it will complete with no corruption, could not be repaired (if there are these post of corruption here or try to analyze it to find the problem or files using

    http://support.microsoft.com/kb/928228.

    While in the command prompt, type chkdsk /f /r and enter and let it run.  They tried to set itself to run at the next reboot.   Answer Yes and restart to run the program.  It will scan and attempt to resolve any corruption or bad sectors on your hard drive and remove especially as a potential cause.

    If it does not, then thanks for posting error messages in Event Viewer about the Security Center (Start / Control Panel / administrative tools / Event Viewer).  Look in the system section.

    If the problem persists, you may be infected.

    Update and run a scan complete with any security software you use.

    Then, try the following programs if you do not, because they can help. I recommend you download, install, update and run full scans with Malwarebytes:http://www.malwarebytes.org/ and SuperAntiSpyware:http://superantispyware.com/ and then run a full scan of Microsoft Security:http://www.microsoft.com/security/default.aspx. This may or may not remove the infections, but will probably not correct the damage caused by them. Even if they or your current AV software seem to work or indicate that you are not infected, you should not completely trust in them and must continue with the recommendations that follow (so it's up to you if you want to try them first, or just ignore all this and get help from an expert you really need as described below).

    Correctly and completely remove these infections can be complex and often require manual removal procedures (which may or may not be entirely effective either). Even if they work, I suggest what follows in any case, so that we can start it (you can ignore the methods above if you want it really is the way forward, but it won't hurt to them for trying).

    Please follow these recommendations of JimR1 - MVP compliments:

    You are running Microsoft Security Essentials?

    If Yes: start here - https://support.microsoftsecurityessentials.com/ and select the link that says - I think my computer is infected - and support and select the option for phone, chat or email (options vary depending on the region)

    If you are in North America, you can call 866-727-2338 for a free Microsoft Help for infections of virus and spyware.

    Otherwise:

    You can start here: https://consumersecuritysupport.Microsoft.com/ or here: http://support.Microsoft.com/contactus/cu_sc_virsec_master?WS=support#TAB0 for the help and support for malware infections.

    If this does not work, or that they can't help, try one of the compliments of forums-remove malware following PA Bear - MVP:

    I can recommend the assistance of experts available in these forums: http://spywarehammer.com/simplemachinesforum/index.php?Board=10.0 http://www.spywarewarrior.com/viewforum.php?f=5 http://www.dslreports.com/Forum/Cleanup http://www.Bluetack.co.uk/forums/index.php and http://Aumha.net/viewforum.php?f=30

    I hope this helps.

    Good luck!

  • My Windows telling me that he needs 11 updates. These updates consistently fail and the Microsoft fix did not work. Error codes are 641 and 80070641

    My Windows telling me that he needs 11 updates.  These consistenly updates fail and the Microsoft fix did not work.  Error codes are 641 and 80070641.

    Hello

    Did you change your computer before this problem?

    You can follow the suggestions and check out them.

    Method 1

    You can follow the procedure in the article.

    How to resolve problems connecting to Windows Update or Microsoft Update

    http://support.Microsoft.com/kb/818018

    Method 2

    You can reset the Windows Update components.

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following windows Help article.
    Back up the registry
    http://Windows.Microsoft.com/en-us/Windows7/back-up-the-registry

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058

    Method 3

    You can download and run the system update readiness tool.

    Description of the update tool of the system to Windows Vista, Windows Server 2008, Windows Server 2008 R2
    http://support.Microsoft.com/kb/947821

    Method 4

    Step 1:

    Place the computer in a clean boot state.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Note: After a troubleshooting follow step 7: reset the computer to start as usual

    Step 2:

    You can manually download and install updates from Microsoft Download Center.

    Microsoft Download Center

    http://www.Microsoft.com/downloads/en/default.aspx

    Method 5

    You can disable temporary of your security software.

    Disable the antivirus software

    http://Windows.Microsoft.com/en-us/Windows-Vista/disable-antivirus-software

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks

    See also:

    Problems with installing updates

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-installing-updates

  • BB10.2 with Cordova 3.2.0 giving security error on the REPRO STEPS WITH the openDatabase

    I have a cordova 3.2.0 application that uses the SQL api, Web. All this good work on iOS and Android, but when I add the blackberry10 platform and try to run the app in the Simulator (BB10_2_0X.1155) gives me a security error when I try to make the openDatabase call.

    Cordova may not add the correct permissions for the file config.xml for the generation? Here's the config.xml file that it creates for me:


    "" http://www.w3.org/NS/widgets"xmlns:cdv ="http://cordova.apache.org/ns/1.0 " xmlns:rim ="http://www.blackberry.com/ns/widgets "> "


    <>ermissions >
    <>Ermit > read_device_identifying_informationermit >
    ermissions >






    MyApp

    MyApp description

    http://www.MyApp.com">
    MyApp





    So it seems that if I reduce the size of the database (I put to 5242880) it works fine. Maybe openDatabase trying to create the database with the exact size rather than let it develop? I do not know.

  • My windows Security Center does not open and I get a notice that "no software firewall is detected.

    My Windows Security Center does not open, and I am also unable to turn on my firewall.  I get notification "not detected any firewall software.

    Hello

    It seems that you need help to solve the problem of Windows Security Center. Please respond to the suite, which will help us to help you in the right direction.

    1. do you get an error message when you try to turn on the firewall?

    2. which antivirus app do you use?

    Refer to the following information and check the status of the issue.

    See the section "Nithyananda J replied on November 27, 2009" what about Windows Security Center

    The windows Security Center service cannot be started.

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-security/the-Windows-Security-Center-service-cant-be/d8250e7a-ee3c-4302-8CA6-9e2a10262feb

    I also suggest you to run the Fixit from the following link.

    Diagnose and automatically fix problems of Windows Firewall service.

    http://support.Microsoft.com/mats/windows_firewall_diagnostic/en-us

    You can also try to solve the problem by running SFC scan

    Make the SFC scan and check the status of the issue.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7

    http://support.Microsoft.com/kb/929833

    I hope this helps.

  • C error: ld: library not found for - introduction collect2: error: ld returned 1 exit status

    I'm trying to compile the "Hello World" code C base with gcc, but the following error message:

    LD: library not found for - introduction

    collect2: error: ld returned 1 exit status

    The code itself is nice, he ran into another computer with no problems.

    First gcc had manually, the problem, installed and then uninstalled and installed with homebrew and still have the problem. How can I fix?

    (Have the 5.1.0 version of gcc)

    Okay, so nobody has responded, but I found a solution. This is the version of gcc, apparently more recent versions have this bug, one that works and compiles the codes is the 4.9 version, in case it would be useful to someone.

  • After you load the update, I get an error message saying minversion &gt; = and maxversion = &lt; 6.0.2

    I tried to install from scratch and the upgrade and after the upgrade, it comes up with this error and won't load. I have to remove and reload 6.0.

    If you use ZoneAlarm Extreme Security then try turning off virtualization.

    See:

  • does not not windows genuine update error code 8e5e03fa, essentials security error code 0 x 80070643 installation.

    Buy laptop new 14 months ago, recently a window pops up saying not using windows.cannot real installation security error code 0x80070643.cannot essentials install windows updates error code 8e5e03fa.my OS is windows 7 Home premium 32-bit.

    [[@Noel: an error 0 x 80070643 when you try to install MSE is usually associated with the failing (1) in order to remove any previously installed apps/AV security suites (i.e., Norton & McAfee 'leftovers') and (2) a pre-existing infection.]] See Installation error 0 x 80070643. See also Genuine Windows Validation error with MS Security Essentials. ]]

  • I'm trying to download Security Suite from my provider and I get a message that I have to get rid of PC Cleaner. How can I remove it?

    Get rid of PC Cleaner

    I'm trying to download Security Suite from my provider and I get a message that I have to get rid of PC Cleaner. I searched my PC and that you do not find PC Cleaner. If I don't know how I'll remove it. Thanks for your help. The only reference to PC Cleaner is the Microsoft Security on the PC.

    Go to add/remove programs and see if PC Cleaner is in the list. If so, then click to remove.
    Then go into Windows Explorer. Research on Windows/System32 and see fi there is pcsd.dll and delete it.
    Then go to regedit and search for any mention of PC Cleaner, PC Cleaner and remove these entries.

    Change the settings of the REGISTRY can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the REGISTRY settings configuration can be solved. Changes to these settings are at your own risk.

    Then see if you still get an error of PC Cleaner.

    Let us know if that helps.

    Marilyn

  • QuickTime gives error - 2048 when opening for mht files

    When you try to open a .mht file, "error - 2048: could not open the .mht file because it is not a QuickTime file.»

    This just started happening in the last week.  Any suggestions on how to fix?  I'm not finding anything.

    As you can see in the next document in Apple...
    . MHT is not a supported format.

    Media formats supported by QuickTime Player
    http://support.Apple.com/kb/HT3775

    Maybe the file association for. MHT has been
    accidentally changed.

    I would say... Right-click the. A MHT file... and
    choose... Open with / Internet Explorer.

    The following link might be worth a visit:

    . MHT file extension
    http://www.FileInfo.com/extension/mht

  • by updating essentials security error 0x80072efd

    by updating the essential security error 0x80072efd and automatic updates to get started but not operating how to go further

    http://support.Microsoft.com/kb/836941

  • My Security Center is turned off and I can't turn it back on. When I click on the Tower on the box, I get a message that the Security Center service cannot be started?

    My Security Center is turned off and I can't turn it back on. When I click on the Tower on the box, I get a message that the Security Center service cannot be started? What makes me to start security do you recommend?
    My Security Center is turned off and I can't turn it back on. When I click on the Tower on the box, I get a message that the Security Center service cannot be started? What makes me to start security do you recommend?

    Start button > in the search box, type services > press the Enter key > uac prompt > scroll Security Center, click...
    topic status, it must be said... Has begun
    under Startup Type, it must be said... Automatic
    If it does not say this, do a RIGHT click on Security Center > in the new window, make the necessary changes...
    the startup type, click on the pointer, and then select Automatic (delayed start)
    the service status, click start
    Click OK when finished. For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

Maybe you are looking for

  • HP Wireless upgrade Kit Q6236A is Compatiblr with HP 520 J510

    Hi I want to buy a kit to upgrade HP Q6236A wireless but need to know if this device can be mounted for HP 520 J510A printer all in one?

  • W530 Quadro K2000m and Premiere Pro CS6

    Hi all I have a W530 with i7, interal Q K2000m, 32 GB of ram and 3 disks (ssd, 2 hgst 1msata 7 k 1000 1 TB in the other two bays). I don't know if I have a problem or not, but: (1) the CUDA acceleration is enabled. So we are OK in the present. (2) wh

  • Launch the operator of TestStand, LabVIEW Interface via ActiveX

    Hello I create a simple VI in which I select a product in a list number and press Go. The VI is used to ensure that the most recent sequence file is open and is not inteneded to replace the OI, simply start with a single click. I don't know that I am

  • Original HP replacement parts

    Hello Sir, I would like to know if I could buy hood origin of HP Pavilion g6 2102tx online.

  • Wikipedia on Sansa players?

    Hi, I found an article on how to get Wikipedia on an iPod, and I was wondering if you could do the same for sansa players, the link to the article is http://www.makeuseof.com/tag/how-to-install-wikipedia-on-your-ipod/