Error #2101

Hello Adobe Actionscript community,
Im having a problem of migration of how to send variables to a php. The application works, but on Internet explorer, returns the following error message:

This error should appear in the Flash test environment as well. This means two things. The first is that there is a real problem with the echo statement you send to Flash (assuming you want to capture data once it has processed your php file. The second is a problem with the properties of the corresponding URLVariables object that is used to capture the data returned. I've attached an example of valid labour code (send an e-mail) and includes the code PHP and Flash AS3 on the main timeline.

Tags: Adobe Animate

Similar Questions

  • Error 2101: ThinkPad T430 and Nocti OCZ 120 GB

    Hello

    After about a month of use, I suddenly got an error: "2101: Drive error detection on hdd2 (sata mini)". Simply by browsing the internet system hung up and after the reboot, that the error appeared.

    I read that people here had same error just after the Assembly of their SSD - mine has worked for a few weeks.

    The problem appeared shortly after the auto BIOS update but not right after flash. 2 or 3 reboots went smoothly.

    Strange, it is now my BIOS version 1.16 when crashes version 1.17 - on the web since last Wednesday the update went Saturday.

    Any ideas how to avoid sending anything (laptop and SSD) to RMA?

    I already have RMA to OCZ ticket but want to save time and do not want to lose the data.

    Besides I don't know if this isn't the BIOS: Lenovo's new.

    Thanks in advance for any help.

    Gootchio

    Okay, this Monday, I had Nocti replaced by OCZ and it works great - now

    So it was no fault of Thinkpad.

  • Error #2101: The string passed to URLVariables.Decode must be a URL-encoded query string residues

    : Error #2101: the string passed to URLVariables.Decode must be a query string URL-encoded containing name/value pairs. to Error$ /throwError () to flash.net::URLVariables/decode() to flash.net::URLVariables() to::URLLoader/onComplete() _ flash.net stop(); var DepartVars:URLVariables = new URLVariables(); var DepartURL:URLRequest = new URLRequest ("scripts/www.mywebsite.com/depart.php"); DepartURL.method = URLRequestMethod.POST; DepartURL.data = DepartVars; var DepartLoader:URLLoader = new URLLoader; DepartLoader.dataFormat = pouvez; DepartLoader.addEventListener (Event.COMPLETE, completeDepart); depart_btn.addEventListener (MouseEvent.CLICK, DepartUser); Function to execute when you press the start function DepartUser (event: MouseEvent): void {/ / Ready variables here for shipment to PHP DepartVars.post_code = 'Start';}         Send the data to the PHP DepartLoader.load (DepartURL);         welcome_txt. Text = "processing of application...". Good journey. " } / / Close function DepartUser / / / / / function for when the PHP talk back to Flash function completedepart(event:Event):void {if (event.target.data.replyMsg == 'success') {var refreshPage:URLRequest = new URLRequest("javascript:NewWindow=window.location.reload();)} NewWindow.focus (); ("void (0);");             navigateToURL (refreshPage, "_self");         } / / CompleteDepart close function / / / / / View Code for the res button var viewRes:URLRequest = new URLRequest ("view_res.php"); viewRES_btn.addEventListener (MouseEvent.CLICK, viewResClick); function viewResClick(event:MouseEvent):void {navigateToURL (viewRes, "_self") ;} / / / / / / / / Code for the edit profile button var editRes:URLRequest = new URLRequest ("edit_res.php");} editRES_btn.addEventListener (MouseEvent.CLICK, editResClick); function editResClick(event:MouseEvent):void {navigateToURL (editRes, "_self") ;}}}

    you need a function named completeDepart to handle the return of you php script.  for example:

    function completeDepart(e:Event):void {}

    trace (e.Target.Data);

    }

  • Error #2101 loading variables?

    Hello!

    I had a problem with loading varables form a file php, tha here as code:

    var loader: URLLoader = new URLLoader();

    specify the format as being variables

    loader.dataFormat = pouvez;

    loader.addEventListener (Event.COMPLETE, varsLoaded);

    Content VARs.txt: foo = bar & foo2 = bar2

    loader.load (new URLRequest ("http://www.gbgknappen.se/designitonline/dekaldesigner/load_pris.php"));

    function varsLoaded (event: Event): void {}

    trace (loader.data is URLVariables;) true

    trace (loader.data.foo); bar

    trace (loader.data.foo2); bar2

    pris_ruta.text = loader.data.foo2 + loader.data.foo;

    }

    And here is the simpel php code:

    <? PHP

    echo 'foo = bar & foo2 = bar2";

    ? >

    Error message: error #2101 the string passed to URLVariables.decode () must be a query string containing URL-encoded name / value pairs.

    What can be wrong in the code?

    try to write your code php with Notepad.

    There could be invisible when you use Dreamweaver or software characters.

  • URLVariables.Decode error converting variables

    Hello!

    I'm passing a simple string of a PHP file, which looks like this

    PHP code:

    $connect = mysql_connect ("localhost", "root", "");
    @mysql_select_db ("dev", $connect);
    $result = mysql_query ("SELECT * FROM users");
    $cant = 0;
    {while ($Row = mysql_fetch_array ($result))}
    echo "cant name $ = $row [name] & cant$ Email = $row [email] &";
    $cant ++;
    }

    Output of PHP:

    Name0 = jane DOE & [email protected] & name1 = jane DOE & [email protected] & Name2 = jane DOE & [email protected] & Name3 = jane DOE & [email protected] & Name4 = jane DOE & [email protected] &

    I ask flash to prase these data and the display of each field in a text field, it seems that he fails to myTextLoader.dataFormat = can. because when I take it out or pass the dataFormat to TEXT, it does not produce this error

    Blink code:

    var myTextLoader:URLLoader = new URLLoader();
    var request: URLRequest = new URLRequest ("http://localhost/flash.php");
    myTextLoader.load (request);
    myTextLoader.addEventListener (Event.COMPLETE, onLoaded);
    myTextLoader.dataFormat = pouvez;

    function onLoaded(e:Event):void {}
    for (var i: Number = 0; i < 9; i ++) {}
    Table for text fields
    var nameField:TextField = new TextField();
    var emailField:TextField = new TextField();
    nameField.text = myTextLoader.data ["Name" + i];
    emailField.text = myTextLoader.data ["Email" + i];
    emailField.y += 50;
    emailField.x = 200;
    nameField.y += 50;
    nameField.x = 150;
    addChild (nameField);
    addChild (emailField);
    }
    }


    Flash error:

    : Error #2101: the string passed to URLVariables.Decode must be a query string URL-encoded containing name/value pairs.
    to Error$ /throwError)
    at flash.net::URLVariables/decode()
    at flash.net::URLVariables()
    at flash.net::URLLoader/onComplete()

    Any suggestions as to what needs to be changed for it to work, I tried to trace things, change the scope of variables etc..

    Find out more on what online Flash Docs, but it seems that the syntax is correct

    Thank you

    You can use:

    var myTextLoader:URLLoader = new URLLoader();
    var request: URLRequest = new URLRequest ("http://localhost/flash.php");
    myTextLoader.load (request);
    myTextLoader.addEventListener (Event.COMPLETE, onLoaded);
    myTextLoader.dataFormat = pouvez;

    function onLoaded(e:Event):void {}

    var s:String = String (myTextLoader.data);
    var num:uint = s.split("&").length / 2;

    tfY var = 0;
    for (var i: Number = 0; i< num;="" i++)="">
    Table for text fields
    var nameField:TextField = new TextField();
    var emailField:TextField = new TextField();
    nameField.text = myTextLoader.data ["Name" + i];
    emailField.text = myTextLoader.data ["Email" + i];
    emailField.y = tfY;
    emailField.x = 200;
    nameField.y = tfY;


    nameField.x = 150;

    tfY += 50;
    addChild (nameField);
    addChild (emailField);
    }
    }

  • Limit of PHP variables?

    are there limits for varibiles in AS3 and PHP

    I like following AS3 code to my flash file

    //-------

    var data1:Array = new Array (5000);

    var data2:Array = new Array (5000);

    var variables: URLVariables = new URLVariables();

    var varSend:URLRequest = new URLRequest ("http://localhost/New Folder1/test.php");

    varSend.method = URLRequestMethod.POST;

    variable = varSend.data;

    var varLoader:URLLoader = new URLLoader;

    varLoader.dataFormat = pouvez;

    varLoader.addEventListener (Event.COMPLETE, completeHandler);

    variables.varX = "w123"

    varLoader.load (varSend);

    function completeHandler(event:Event):void {}

    var phpVar1 = event.target.data.var1;

    var phpVar2 = event.target.data.var2;

    Data1 = phpVar1.split('**');

    data2 = phpVar2.split('**');

    }

    //-------

    and I im my test.php

    //---------------------------------------------------------------------------

    <? PHP

    $string = "";

    $string1 = "";

    $maxx = 0;

    $m = $_POST ["varx"];

    $c = oci_connect ("*", "*", "*","AL32UTF8");

    $s = oci_parse ($c, "select * from mytable where id ='$m '");

    oci_execute ($s);

    PutEnv ("NLS_LANG is AMERICAN_AMERCAN. AL32UTF8");

    While (($row = oci_fetch_array ($s, OCI_BOTH))! = false)

    {

    $maxx ++;

    If {($maxx < 114)

    $string. = $row [0]. » **";

    $string1. = $row [1]. » **";

    }

    }

    print 'var1 = $string';

    ' print' & var2 = string1$ ';

    ? >

    //---------------------------------------------------------------------------

    each if things run the below 113 record result, then I write in my code above if ($maxx < 113), and if I withdraw if statement I got this: error #2101 the string passed to URLVariables.Decode must be a string of motion encoded with name/value pairs

    and I in my 520 table files so I do not understand where is the prolplem is there limit in varibles

    and sorry for my language

    the problem is solved I change can to URLLoaderDataFormat.TEXT

  • Special characters in the variable string sent from php.

    Hello. Assuming that I have send a php string variable in flash:

    AS3:

    var MyImportedString:String;

    var variables_page_text:URLVariables = new URLVariables();

    var varSend_page_text:URLRequest = new URLRequest("MyPHP.php");

    varSend_page_text method in the group URLRequestMethod.POST;

    varSend_page_text data in the Group variables_page_text;


    var varLoader_page_text:URLLoader = new URLLoader;

    varLoader_page_text the dataFormat group pouvez;

    varLoader_page_text. addEventListener (Event.COMPLETE, var_comp_page_text);

    varLoader_page_text. load (varSend_page_text);

    ( function var_comp_page_text() event: Event(): void {}

    MyImportedString = event.target.data. $myvariable;

    }

    PHP:

    <? PHP

    header (' Content-Type: text/html; charset = utf - 8');

    $mystring1 = "some text &";

    Print "$myvariable =" . $mystring1;

    ? >

    I noticed that the special '&' residing inside the string character, throws an error: #2101: the string passed to URLVariables.Decode must be a query string URL-encoded containing name/value pairs.

    My first thought was, it has something to do with the html entities, but other entities (such as <> or """) do not throw any error. In addition, the use of php functions like htmlentities(). or html_entity_decode(); makes no difference in this case:

    Print "$myvariable =" . htmlentities ($mystring1);

    or

    Print "$myvariable =" . html_entity_decode ($mystring1);

    I also noticed that the characters such as '%', ' ^', '+' appear at all;

    What it means? Any ideas?

    Reagards.

    This function generally works pretty well:

        function flash_encode($string)
        {
           $string = rawurlencode(utf8_encode($string));

    $string = str_replace("%C2%96", "-", $string);
           $string = str_replace("%C2%91", "%27", $string);
           $string = str_replace("%C2%92", "%27", $string);
           $string = str_replace("%C2%82", "%27", $string);
           $string = str_replace("%C2%93", "%22", $string);
           $string = str_replace("%C2%94", "%22", $string);
           $string = str_replace("%C2%84", "%22", $string);
           $string = str_replace("%C2%8B", "%C2%AB", $string);
           $string = str_replace("%C2%9B", "%C2%BB", $string);

    return $string;
        }
    ?>

  • cannot switch from php to actionscript 3.0 variables

    I use CS3 and I write the following code to pass the variable to Flash from PHP

    ActionScript

    var myLoader:URLLoader = new URLLoader();

    myLoader.dataFormat = URLLoaderDataFormat.TEXT;

    var myRequest:URLRequest = new URLRequest ("http://localhost/moodle/value.php");

    myLoader.load (myRequest);

    myLoader.addEventListener (Event.COMPLETE, onCompleteHandler);

    var myValue: String;

    function onCompleteHandler(e:Event):void {}

    var $myvariable: URLVariables = new URLVariables (e.target.data);

    myValue = myvariable.values;

    trace (MyValue);

    }

    PHP file

    <? PHP

    ECHO ('values = 8');

    ? >

    But I always have the error and can not get the values using trace();

    Until I try to use 'myLoader.dataFormat = can;' I still get the same error.

    : Error #2101: the string passed to URLVariables.Decode must be a query string URL-encoded containing name/value pairs

    to Error$ /throwError)

    at flash.net::URLVariables/decode()

    at flash.net::URLVariables$iinit()

    at flash.net::URLLoader/flash.net:URLLoader::onComplete()

    Can someone help me?

    Rewrite your PHP...

    <>

    echo "values = 8;

    ?>

    edited: deleted information about different display

  • T530, 2101: Error detection on HDD2 (Sata Mini)

    I started to get this error every time that I reboot my machine. If I press boot ESC is going very well.

    Whats strange is that I watch have a Mini Sata HDD2 and if I do that I've never known about it and I can't put it in the Device Manager, etc..

    How can I get the machine to stop trying to detect this? Very annoying.

    Hi guys,.

    Thanks for the replies. This message was made four months or if there is, and the problem is now resolved. IBM came and replaced care mini sata on the bottom of the laptop. I had no idea I had this card at all, I was not using it. Unfortunately, the message went to replace.

  • HP tablet 10 2101 wireless keyboard does not

    Hello. New to the world of the tablet. Just bought a HP 10 compressed 2101 w/Bluetooth keyboard. I can't use the keyboard.  It seems that its not communicating only not with the tablet.  I'm sure that's probably operator error.  The Tablet and keyboard are fully charged.  Being not very technically savvy, I'm looking for help.  Thank you in advance!

    Mike

    Search the "Search for Devices" section of the BlueTooth Tablet and tap trying to pair them up.

    I hope that the keyboard that you are trying to use is compatible with Android devices!   :/

    WyreNut

  • Detecting T-430 2101 every time I restart

    Hello

    So I just got my T430 in November and recently, he had been blue screening. I decided to factory restore, and since the restoration of the factory I was receiveing a 2101 error whenever I restart, and only when I restart. I have no idea what to do, anyone have a solution?

    All my data is backed up, so here I don't mind restarting, and I think it's a hardware problem, so I send it for repair. And the 2101 error is the error on the mSata is most likely a hardware problem.

  • Unable to run windows update error code A 8024, 000

    Original title: 8024A 000 error

    I replaced my hard drive recently, and after you install the recovery disk, I am unable to run the window update (error code A 8024, 000). I replaced the hard drive of this computer before and used this disc of recovery before and never had this problem, I even tried to reinstall the drive recovery again and the problem persists. I also tried the solution posted on other peoples issues this using prompt command and it turns out unsuccessful. I also tried to install the Windows Update Agent, which is recommended by some, it starts to install and I get an error saying that it is impossible to install PowerShell. If anyone has any alternatives, I try (in addition to those I've already tried) Please help! Thank you for your time.

    Hi all.

    solution:

    Download the new technology Intel® Rapid storage (RAID) driver 11.6.0.1030 version

    of http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProdId=2101&DwnldID=21852&ProductFamily=Software+Products&ProductLine=Chipset+Software&ProductProduct=Intel%c2%ae+Rapid+Storage+Technology+ (Intel % c2% ae + RST) & lang = fra and install in "normal" mode.

    This works.

    The Windows update error code appears after a hard drive replacement, and most providers have only this driver in version 9. XX or 10.xx.

    This driver 11 version solves the problem with windows Update error A 8024, 000.

    (have this error on 5 different machinetypes (Samsung, HP, Sony Vaio, etc.) and are all now resolved).

  • Real error 0x8004fe21

    Hello, i get the message 'not genuine' with the error 0x8004fe21, Windows 7 is already installed with the HP computer, I tried everything I found on Google, this is my last option, hope that someone has the key to solve this problem. I ran the MGADiag and this is what I got:

    Diagnostic report (1.9.0019.0):
    -----------------------------------------
    Given WGA-->
    Validation status: genuine
    Validation code: 0

    Code of Validation caching: 0x0
    Windows product key: *-* - 788W3 - H689G-6P6GT
    The Windows Product Key hash: yr8OHoeXhbT4dc6MxGYjdAStSPY =
    Windows product ID: 00371-OEM-8992671-00008
    Windows product ID type: 2
    Windows license Type: OEM SLP
    The Windows OS version: 6.1.7601.2.00010100.1.0.048
    ID: {1DC714DE-DC22-44CA-B078-465045F0BAEA} (3)
    Admin: Yes
    TestCab: 0x0
    WGA Version: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0x00000000
    Build lab: 7601.win7sp1_gdr.140303 - 2144
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    WgaER data-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    WGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 109 n/a
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program Files\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->
    [File mismatch: C:\Windows\system32\sppobjs.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\sppc.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\sppcext.dll[6.1.7600.16385]
    [File mismatch: C:\Windows\system32\sppwinob.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\slc.dll[6.1.7600.16385]
    [File mismatch: C:\Windows\system32\slcext.dll[6.1.7600.16385]
    [File mismatch: C:\Windows\system32\sppuinotify.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\slui.exe[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\sppcomapi.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\sppcommdlg.dll[6.1.7600.16385]
    [File mismatch: C:\Windows\system32\sppsvc.exe[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\drivers\spsys.sys[6.1.7127.0]
    [File mismatch: C:\Windows\system32\systemcpl.dll[6.1.7601.17514]
    [File mismatch: C:\Windows\system32\en-us\user32.dll.mui[6.1.7601.17514]

    Other data-->
    Office details: {1DC714DE-DC22-44CA-B078-465045F0BAEA}1.9.0019.06.1.7601.2.00010100.1.0.048x 32*-*-*-*-6P6GT00371-OEM-8992671-000082S-1-5-21-1379832113-1874449674-1734942861Hewlett-PackardHP ProDesk 400 G1 SFFHewlett-PackardL02 v02.0120130922000000.000000 + 0006D983F07018400F4080 A0409Pacific Standard Time(GMT-08:00)13HPQOEMSLIC PCB109

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7601.17514

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, channel OEM_SLP
    Activation ID: 50e329f7-a5fa-46b2-85fd-f224e5da7764
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00178-926-700008-02-1033-7601.0000-0412011
    Installation ID: 016151484073165854519046515560827053347956917490665943
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    The machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: 6P6GT
    License status: licensed
    Remaining Windows rearm count: 1
    Trust time: 22:50:04 09/05/2015

    Windows Activation Technologies-->
    HrOffline: 0x8004FE21
    HrOnline: 0x00000000
    Beyond: 0x000000000001EFF0
    Event timestamp: 9:5:2015 22:24
    WAT Activex: registered
    WAT administration service: registered

    --> HWID data
    Current HWID hash: KgAAAAEAAQABAAEAAAABAAAAAQABAAEA6GGEPlocam1ALKISqG8Iwsj2

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    HPQOEM APIC-SLIC PCBS
    SLIC FACP HPQOEM PCB
    HPQOEM HPET SLIC PCBS
    MCFG HPQOEM SLIC PCBS
    FPDT HPQOEM SLIC PCBS
    SSDT PmRef Cpu0Ist
    SSDT PmRef Cpu0Ist
    SSDT PmRef Cpu0Ist
    SSDT PmRef Cpu0Ist
    SSDT PmRef Cpu0Ist
    SSDT PmRef Cpu0Ist
    SLIC SLIC PCB HPQOEM

    This may simply be caused by a bad set of drivers of technology Intel Rapid Storage Technology-

    Intel rapid storage driver installation

    try to download and install them from here - https://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProdId=2101&DwnldID=22194

    (you want the download of iata_enu.exe)

    Once complete, please restart twice, then after another MGADiag report.

  • ASR 1002 ios - xe update failure, physmap flash, INVALID_BOOT_TRACE_CFG, Confreg corrupt errors

    Not clear yet if all these problems are related.  Main question is this attempt to update asr1000rp1 - advipservicesk9.03.03.00.S.151 - 2.S.bin asr1000rp1 - adventerprisek9.03.13.05.S.154 - 3.S5 - ext.bin is a failure.  Check /md5 result for the new image matches the hash of Cisco.  New start of configuration lines are ignored, and he returned to running the default image.  The long series of physmap-Flash errors occur after a reload regardless of if an update was attempted.  Do not have these problems on our older IOS routers, any help with this beast is appreciated.

    Current config before the update attempt:

    ASR #sh worm
    Software Cisco IOS, IOS - XE Software (PPC_LINUX_IOSD-ADVIPSERVICESK9-M), Version 15.1 (2) S, RELEASE SOFTWARE (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Updated Friday, March 24, 11 23:32 by mcpre

    ROM: IOS - XE ROMMON

    System return to the ROM to reload
    System image file is "bootflash:/asr1000rp1-advipservicesk9.03.03.00.S.151-2.S.bin".
    Reload last reason: reload command

    Cisco ASR1002 (2RU) processor with 1706515K / 6147K bytes of memory.
    4 gigabit Ethernet interfaces
    32768K bytes of non-volatile configuration memory.
    K 4194304 bytes of physical memory.
    7757823K bytes of eUSB flash bootflash:.

    Configuration register is 0 x 2101 (will be 0xFFFF at next reload)

    ASR #sh run | start of the Inc.
    boot-start-marker
    boot-end-marker

    Config who wrote during the attempt to update:

    ASR #sh run | start of the Inc.
    boot-start-marker
    start the system flash bootflash:asr1000rp1 - adventerprisek9.03.13.05.S.154 - 3.S5 - ext.bin
    start the flash bootflash:asr1000rp1 - advipservicesk9.03.03.00.S.151 - 2.S.bin system
    boot-end-marker

    ASR #dir bootflash:
    Directory of the bootflash: /.

    11 drwx 16384 January 11, 2012 09:39:11-07:00 lost + found
    680065 drwx 4096 11 January 2012 09:40:13-07:00 theme
    809601 drwx 4096 11 January 2012 10:12:58-07:00 core
    599105 drwx 4096 7 March 2016 19:47:20-07:00 .prst_sync
    615297 drwx 4096 11 January 2012 10:13:07-07:00 .rollback_timer
    -rw-13 0 11 January 2012 10:13:41-07:00 tracelogs.606
    566721 drwx 8192 7 March 2016 19:52:46-07:00 tracelogs
    14 - rw - 304628024 November 15, 2012 08:10:57 - 07:00 asr1000rp1 - advipservicesk9.03.03.00.S.151 - 2.S.bin
    12 - rw - 370973308 March 7, 2016 16:06:12-07:00 - asr1000rp1 - adventerprisek9.03.13.05.S.154 - 3.S5 - ext.bin

    ASR #reload
    Proceed to recharge? [confirm]

    * 02:55:15.131 Mar 8: % SYS-5-RELOAD: reload requested by admin console. Reason for reload: reload the command.
    Mar 7 19:55:28.998 R0/0: % PMAN-5-EXITACTION: process manager is out: output of process with the top-up chassis code

    System Bootstrap, Version 12.2 XNC SOFTWARE (33r), LIBERATION (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 2009 by cisco Systems, Inc.

    Content of the SPD PROM slot 0
    8008080E 0A 614800 05304502 82080800 0C 083801 1005033D 5050603C 1E3C2D01
    20271017 3C1E1E00 063C7F80 00000000 00000000 00000000 00001247 18220F00
    calculated chksum = 00000047; stored at chksum = 00000047

    Content of the SPD PROM slot 1
    8008080E 0A 614800 05304502 82080800 0C 083801 1005033D 5050603C 1E3C2D01
    20271017 3C1E1E00 063C7F80 00000000 00000000 00000000 00001247 18220F00
    calculated chksum = 00000047; stored at chksum = 00000047

    Compensation of bss... done

    CPU version: 2.1.x
    CPU Clock freqs: sys:100000000 CCB:400000000 Core: 1400000000
    local: 50000000 i2c:97656 MII:1785714
    CPLD Version: 23 (MM/DD/YY): 10/01/08 ASR1002-RP1 Slot: 0

    Current running image: Boot ROM0
    Last reset cause: LocalSoft
    Last reset to: kill Mar 08 02:55:47 UTC 2016

    Confreg is damaged, using the default value 0x8000

    Correction of the primary nv_flash

    Platform ASR1002-RP1 4194303 KB main memory

    start-up: unsupported flash "boot device.
    AutoBoot: initialization failed, reboot...

    System Bootstrap, Version 12.2 XNC SOFTWARE (33r), LIBERATION (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 2009 by cisco Systems, Inc.

    Current running image: Boot ROM0
    Last reset cause: LocalSoft
    Last reset to: kill Mar 08 02:56:07 UTC 2016

    Platform ASR1002-RP1 4194303 KB main memory

    start-up: unsupported flash "boot device.
    AutoBoot: initialization failed, reboot...

    System Bootstrap, Version 12.2 XNC SOFTWARE (33r), LIBERATION (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 2009 by cisco Systems, Inc.

    Current running image: Boot ROM0
    Last reset cause: LocalSoft
    Last reset to: kill Mar 08 02:56:28 UTC 2016

    Platform ASR1002-RP1 4194303 KB main memory

    No image found valid boot
    Attempt to autoboot final of the default boot device...
    Found tracelogs.606
    Image size 0 inode num 13, bks cnt 0 blk size 8 * 512

    Size of the boot image = 0 (0x0) bytes
    Find asr1000rp1 - advipservicesk9.03.03.00.S.151 - 2.S.bin
    Image size 304628024 inode num 14, bks cnt 74373 blk size 8 * 512
    #############################################################################

    Size of the boot image = 304628024 (0 x 12284138) bytes

    Missing or illegal the ip address for the DEFAULT_GATEWAY variable
    Background basket using central macaddr
    IP address missing or illegal for variable IPAddress
    Missing or illegal the ip address for the IP_SUBNET_MASK variable
    Structure of rev 0 package header detected
    SHA-1 hash calculated...
    validate_package: SHA-1 hash:
    calculated 8a599bb4:81792bce:6e6023aa:c61924cb:1 c 909603
    8a599bb4:81792bce:6e6023aa:c61924cb:1 expected c 909603
    Image posted

    Software Cisco IOS, IOS - XE Software (PPC_LINUX_IOSD-ADVIPSERVICESK9-M), Version 15.1 (2) S, RELEASE SOFTWARE (fc1)
    Technical support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2011 by Cisco Systems, Inc.
    Updated Friday, March 24, 11 23:32 by mcpre

    Cisco ASR1002 (2RU) processor with 1706515K / 6147K bytes of memory.
    4 gigabit Ethernet interfaces
    32768K bytes of non-volatile configuration memory.
    K 4194304 bytes of physical memory.
    7757823K bytes of eUSB flash bootflash:.

    User access audit

    User name:
    %Username: timeout expired.
    User name:
    %Username: timeout expired.
    User name:
    * 8 Mar 03:01:56.211: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:01:56.211: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d27d4 bytes write failed. return - 62, retlen 44
    * 8 Mar 03:01:56.915: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:01:56.915: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:01:56.915: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:01:57.649: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:01:58.362: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:01:58.362: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:01:58.362: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:01:59.106: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:01:59.106: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:01:59.106: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:01:59.841: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:00.557: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:00.557: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:00.557: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:01.331: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:01.331: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:01.331: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:02.092: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:02.092: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:02.092: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:02.938: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:02.938: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:02.938: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:03.851: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:03.851: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:03.851: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:04.854: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:04.854: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:04.854: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:05.735: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:05.735: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:05.735: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:06.545: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:06.545: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:06.545: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:07.276: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:07.276: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:07.276: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:08.006: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:08.006: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:08.006: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:08.752: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:08.752: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:08.752: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:09.479: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:09.479: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:09.479: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:10.184: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:10.184: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:10.184: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:10.883: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:10.883: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:10.883: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:11.652: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:11.652: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:11.652: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:12.383: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:12.383: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:12.383: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:13.095: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:13.095: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:13.095: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:13.820: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:13.820: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:13.820: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:14.556: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:14.556: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:14.556: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:15.269: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:15.269: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:15.269: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:16.031: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:16.031: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:16.031: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:16.743: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:16.743: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:16.743: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:17.473: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. XStatus = c4, status = c4
    * 8 Mar 03:02:17.473: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62, retlen 0
    * 8 Mar 03:02:17.473: % IOSXE-5-PLATFORM: R0/0: core: not marking not space to 0x001d283c as dirty, because flash driver returned zero retlen
    * 8 Mar 03:02:18.192: % IOSXE-3-PLATFORM: R0/0: kernel: physmap-flash. 0: not ready chip for writing to the buffer. Xsta = c4
    * 8 Mar 03:02:18.192: % IOSXE-5-PLATFORM: R0/0: kernel: 104 to 0x001d283c bytes write failed. return - 62,
    * 8 Mar 03:02:18.192: % IOSXE-5-PLATFORM: R0/0: core: do not mark out space to 0x001d283c as dirty, because teturned retlen zero

    First, I would check the versions ROMMON ('see the platform') and upgrade to the latest available - 12.2 XNC (33r) is in any case much too old for IOS XE 3.13 S, and most recent ROMMONs also fix bugs.

    Second, I'd be curious to know what "fsck bootflash:" said...

  • Failed Windows Update - error 8000247 - did the Diag MGA tool

    Hello

    I have a Toshiba Satellite Pro with Win 7 Pro 64 bit installed.
    It is a fresh to this machine load, after the original Vista installation fell to pieces.
    It has been successfully activated by phone.
    I downloaded all the main drivers on the site of Toshiba - video, sound, chipset, bios
    Windows updates installed normally, he had done about 150 of them when it came.  The error is
    "The Windows Update cannot currently check for updates, because the service is not running."  You may have to restart your computer.
    I checked this, and the BITS and Windows Update services are running in automatic mode and is set to open a session under the Local Service account.
    I was also wondering if it would solve a complete installation of SP1 and have uploaded it separately, but it does not affect it.
    I also renamed the windowsupdate.log file and folder softwaredistributon and rebooted, but there is also no effect.
    various other tools of fixit MS claim solve the errors, but the problem remains.
    I also tried the Windows analysis tool to see if I had a few compatibility issues, and it gives the error 8000247.
    What else can I try?
    -MGA diag tool results are below.
    Thanks, Danny

    This may simply be caused by a bad set of drivers of technology Intel Rapid Storage Technology-

    Intel rapid storage driver installation

    try to download and install them from here - https://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&ProdId=2101&DwnldID=22194

    (you want the download of iata_enu.exe)

    Once complete, please restart twice, then after another MGADiag report.

Maybe you are looking for