System Update keeps failing "Package did not download" and does not show all updates

I recently installed win8 64-bit on my X1 (1294-2PG) using a clean install formatting the hard drive. Now I want to use System Update to install right drivers. Two problems occur:
System Updates fails to show all the updates available for my PC in the website. Only 2-3 updates are shown.
System Updates repeatedly fails to download the chosen updates. It seems to download most of the file when the download suddenly halts and I get the message: "1 Package did not download" or 2 or 3 depending on the number of updates.
I have tried for several days multiple times a day and even uninstalling/reinstalling System Update. The errors keeps occurring.

sorry... i can't help with why TVSU isn't successful with this driver on your machine.
as a workaround, you may wish do download it from the X1 driver matrix:
http://support.lenovo.com/en_US/research/hints-or-tips/detail.page?&DocID=HT051705
driver: http://support.lenovo.com/en_US/downloads/detail.page?DocID=DS014952
hope this helps a bit.
English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
PM requests for individual support are not answered. If a post solves your issue, please mark it so.
X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
I am not a Lenovo employee.

Similar Messages

  • TS1410 My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    My iPod shuffle ( 1st or 2nd generation) will not recharge and does not show when the doc is connected to my MacBook Pro. I'm running the latest updated version of iTunes.

    Hello Jane Benstock,
    Thank you for using Apple Support Communities
    It sounds like the next best step to take would be to reset the iPod Shuffle.
    Check out this article named Resetting iPod shuffle found here http://support.apple.com/kb/HT1655.
    All the best,
    Sterling

  • Is not abstract and does not override abstract method ERROR

    Hello. I'm new at all this, and am attempting to recreate a sample code out of my book (Teach Yourself XML in 24 Hours), and I keep getting an error. I appriciate any help.
    This is the Error that I get:
    DocumentPrinter is not abstract and does not override abstract method skippedEntity(java.lang.String) in org.xml.sax.ContentHandler
    public class DocumentPrinter implements  ContentHandler, ErrorHandler
            ^This is the sourcecode:
    import org.xml.sax.Attributes;
    import org.xml.sax.ContentHandler;
    import org.xml.sax.ErrorHandler;
    import org.xml.sax.Locator;
    import org.xml.sax.SAXParseException;
    import org.xml.sax.XMLReader;
    public class DocumentPrinter implements  ContentHandler, ErrorHandler
    // A Constant containing the name of the SAX parser to use.
    private static final String PARSER_NAME = "org.apache.xerces.parsers.SAXParser";
    public static void main(String[] args)
       // Check to see whether the user supplied any command line arguments.  If not, print an error and exit.
       if (args.length == 0)
         System.out.println("No XML document path specified.");
         System.exit(1);
       // Create a new instance of the DocumentPrinter class.
       DocumentPrinter dp = new DocumentPrinter();
       try
         // Create a new instance of the XML Parser.
         XMLReader parser = (XMLReader)Class.forName(PARSER_NAME).newInstance();
         // Set the parser's content handler
        // parser.setContentHandler(dp);
         // Set the parsers error handler
         parser.setErrorHandler(dp);
         // Parse the file named in the argument
         parser.parse(args[0]);
       catch (Exception ex)
         System.out.println(ex.getMessage());
         ex.printStackTrace();
    public void characters(char[] ch, int start, int length)
       String chars ="";
       for (int i = start; i < start + length; i++)
         chars = chars + ch;
    System.out.println("Recieved characters: " + chars);
    public void startDocument()
    System.out.println("Start Document.");
    public void endDocument()
    System.out.println("End of Document.");
    public void startElement(String namespaceURI, String localName, String qName, Attributes atts)
    System.out.println("Start element: " + localName);
    for (int i = 0; i < atts.getLength(); i++)
    System.out.println(" Attribute: " + atts.getLocalName(i));
    System.out.println(" Value: " + atts.getValue(i));
    public void endElement(String namespaceURI, String localName, String qName)
    System.out.println("End of element: " + localName);
    public void startPrefixMapping(String prefix, String uri)
    System.out.println("Prefix mapping: " + prefix);
    System.out.println("URI: " + uri);
    public void endPrefixMapping(String prefix)
    System.out.println("End of prefix mapping: " + prefix);
    public void ignorableWhitespace(char[] ch, int start, int length)
    System.out.println("Recieved whitespace.");
    public void processingInstruction(String target, String data)
    System.out.println("Recieved processing instruction:");
    System.out.println("Target: " + target);
    System.out.println("Data: " + data);
    public void setDocumentLocation(Locator locator)
    // Nada
    public void error(SAXParseException exception)
    System.out.println("Parsing error on line " + exception.getLineNumber());
    public void fatalError(SAXParseException exception)
    System.out.println("Fatal parsing error on line " + exception.getLineNumber());
    public void warning(SAXParseException exception)
    System.out.println("Warning on line " + exception.getLineNumber());

    Check to make sure that the arguments are consistent with your ContentHandler class. Probably the wrong type.
    I think you forgot to include the skippedEntity method, it seems to be missing. Even if an implemented class has a method that you are not using, you still have to include the method in your code even if it doesn't do anything.
    Message was edited by:
    ChargersTule1

  • Is not abstract and does not override abstract method tablechanged

    I will remove all the gui code to make it shorter, but my problem lies with my InteractiveTableModelListener.
    public class Meet extends JPanel{
      private static void createAndShowGUI() {
            JFrame frame = new JFrame("MEET_dataTable");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(new Meet(), BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
    public class InteractiveTableModelListener implements TableModelListener {
         public void TableChanged(TableModelEvent evt) {
      if (evt.getType() == TableModelEvent.UPDATE) {
          int column = evt.getColumn();
          int row = evt.getFirstRow();
          dataTable.setColumnSelectionInterval(column + 1, column + 1);
          dataTable.setRowSelectionInterval(row, row);
    class InteractiveRenderer extends DefaultTableCellRenderer {
      protected int interactiveColumn;
      public InteractiveRenderer(int interactiveColumn) {
          this.interactiveColumn = interactiveColumn;
    public Component getTableCellRendererComponent(JTable dataTable,
         Object value, boolean isSelected, boolean hasFocus, int row,
         int column)
      Component c = super.getTableCellRendererComponent(dataTable, value, isSelected, hasFocus, row, column);
       if (column == interactiveColumn && hasFocus) {
         if ((Meet.this.tableModel.getRowCount() - 1) == row &&
            !Meet.this.tableModel.hasEmptyRow())
             Meet.this.tableModel.addEmptyRow();
        highlightLastRow(row);
      return c;
    public void highlightLastRow(int row) {
         int lastrow = tableModel.getRowCount();
      if (row == lastrow - 1) {
          dataTable.setRowSelectionInterval(lastrow - 1, lastrow - 1);
      else {
          dataTable.setRowSelectionInterval(row + 1, row + 1);
         dataTable.setColumnSelectionInterval(0, 0);
    public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                UIManager.put("swing.boldMetal", Boolean.FALSE);
                createAndShowGUI();
    }As i say, i have removed all the gui code to make it shorter, but in this code i create the table and add all the model to it. I am being returned with the error
    Meet.InteractiveTableModelListener is not abstract and does not override abstract method tableChanged(javax.swing.event.TableModelEvent)in javax.swing.event.TableModelListener
    what would be causing this error?
    Cheers

    Sorry, just figured out my silly error, the method is tableChanged not TableChanged.
    cheers
    TOPIC CLOSED
    Edited by: nick2price on Sep 11, 2008 7:08 AM

  • ...is not abstract and does not override abstract method compare

    Why am I getting the above compile error when I am very clearly overriding abstract method compare (ditto abstract method compareTo)? Here is my code -- which was presented 1.5 code and I'm trying to retrofit to 1.4 -- followed by the complete compile time error. Thanks in advance for your help (even though I'm sure this is an easy question for you experts):
    import java.util.*;
       This program sorts a set of item by comparing
       their descriptions.
    public class TreeSetTest
       public static void main(String[] args)
          SortedSet parts = new TreeSet();
          parts.add(new Item("Toaster", 1234));
          parts.add(new Item("Widget", 4562));
          parts.add(new Item("Modem", 9912));
          System.out.println(parts);
          SortedSet sortByDescription = new TreeSet(new
             Comparator()
                public int compare(Item a, Item b)   // LINE CAUSING THE ERROR
                   String descrA = a.getDescription();
                   String descrB = b.getDescription();
                   return descrA.compareTo(descrB);
          sortByDescription.addAll(parts);
          System.out.println(sortByDescription);
       An item with a description and a part number.
    class Item implements Comparable     
          Constructs an item.
          @param aDescription the item's description
          @param aPartNumber the item's part number
       public Item(String aDescription, int aPartNumber)
          description = aDescription;
          partNumber = aPartNumber;
          Gets the description of this item.
          @return the description
       public String getDescription()
          return description;
       public String toString()
          return "[descripion=" + description
             + ", partNumber=" + partNumber + "]";
       public boolean equals(Object otherObject)
          if (this == otherObject) return true;
          if (otherObject == null) return false;
          if (getClass() != otherObject.getClass()) return false;
          Item other = (Item) otherObject;
          return description.equals(other.description)
             && partNumber == other.partNumber;
       public int hashCode()
          return 13 * description.hashCode() + 17 * partNumber;
       public int compareTo(Item other)   // OTHER LINE CAUSING THE ERROR
          return partNumber - other.partNumber;
       private String description;
       private int partNumber;
    }Compiler error:
    TreeSetTest.java:25: <anonymous TreeSetTest$1> is not abstract and does not over
    ride abstract method compare(java.lang.Object,java.lang.Object) in java.util.Com
    parator
                public int compare(Item a, Item b)
                           ^
    TreeSetTest.java:41: Item is not abstract and does not override abstract method
    compareTo(java.lang.Object) in java.lang.Comparable
    class Item implements Comparable
    ^
    2 errors

    According to the book I'm reading, if you merely take
    out the generic from the code, it should compile and
    run in v1.4 (assuming, of course, that the class
    exists in 1.4). I don't know what book you are reading but that's certainly incorrect or incomplete at least. I've manually retrofitted code to 1.4, and you'll be inserting casts as well as replacing type references with Object (or the erased type, to be more precise).
    These interfaces do exist in 1.4, and
    without the generics.Exactly. Which means compareTo takes an Object, and you should change your overriding method accordingly.
    But this raises a new question: how does my 1.4
    compiler know anything about generics? It doesn't and it can't. As the compiler is telling you, those interfaces expect Object. Think about it, you want to implement one interface which declares a method argument type of Object, in several classes, each with a different type. Obviously all of those are not valid overrides.

  • In Lync, if a call is not answered, and does not go to voice mail, is anything recorded in the Lync database ?

    We are using Lync 2010. This question relates to the LCSCDR database.
    In Lync, if a call is not answered, and does not go to voice mail, is anything recorded in the Lync database ? Are there any options to make Lync store a record of unanswered calls ?
    Is there a way to tell from the LYnc database if a call was answered by a person or went to voice mail ?
    I cannot see anything in the sessiondetails table to indicate any of the above.
    Any help much appreciated.

    Hello,
    You shouldn't install Shockwave Player unless you know for a fact that you need it.
    # From the following page, save the uninstaller, the full installer for Netscape, and the full installer for Internet Explorer if you also need it in that browser.
    #* http://www.adobe.com/shockwave/download/alternates/#sp
    # Exit all applications.
    # Run the uninstaller.
    # Restart your computer.
    # Run the installer for Netscape.
    # Run the installer for Internet Explorer if you downloaded it.
    This forum doesn't support BBCode like <nowiki>[IMG]</nowiki> tags. You can simply post the plain links to the images. In replies to the thread, you have the option to attach images to your post.
    * https://support.mozilla.org/kb/markup-chart

  • Is not abstract and does not override abstract method actionPerformed

    I dont how to corr. Please help!! and thank you very much!!
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class test extends JFrame implements ActionListener, ItemListener
              private CenterPanel centerPanel;
              private QuestionPanel questionPanel;
              private ButtonPanel buttonPanel;
              private ResponsePanel responsePanel;
              private JButton b1,b2,b3,b4,b5;               //Create five references to Jbutton instances
         private JTextField t1,t2,t3,t4,t5;          //Create five references to JTextField instances
              private JLabel label1;                    //Create one references to JLabel instances
              private JRadioButton q1,q2,q3;               //Create three references to JRadioButton instances
              private ButtonGroup radioGroup;               //Create one references to Button Group instances
              private int que1[] = new int[5];           //Create int[4] Array
              private int que2[] = new int[5];
              private int que3[] = new int[5];
              private String temp1, temp2, temp3, temp4, temp5, temp6, temp7, temp8, temp9, temp10,
                        temp11, temp12, temp13, temp14, temp15;
    public test (String header)
              super(header);
              Container container = getContentPane();
              label1 = new JLabel ("PLease click on your response to ");     
              q1 = new JRadioButton("I understand most of the content of this subject",true);
              add(q1);
              q2 = new JRadioButton("I see the relevance of the subject to my degree",false);
              add(q2);
              q3 = new JRadioButton("The workload in this subject is appropriate",false);
              add(q3);
              radioGroup = new ButtonGroup();               //JRadioButton belong to ButtonGroup
              radioGroup.add(q1);
              radioGroup.add(q2);
              radioGroup.add(q3);
              JPanel buttonPanel = new JPanel();
              JPanel responsePanel = new JPanel();
              JPanel questionPanel = new JPanel();
              JPanel centerPanel = new JPanel();
              b1 = new JButton ("Strongly DISAGREE");          //Instantiate JButton with text
              b1.addActionListener (this);               //Register JButtons to receive events
              b2 = new JButton ("DISAGREE");
              b2.addActionListener (this);
              b3 = new JButton ("Neither AGREE or DISAGREE");
              b3.addActionListener (this);
              b4 = new JButton ("AGREE");
              b4.addActionListener (this);
              b5 = new JButton ("Strongly AGREE");
              b5.addActionListener (this);
              buttonPanel.setLayout(new GridLayout(5,1));
              buttonPanel.add(b1);
              buttonPanel.add(b2);
              buttonPanel.add(b3);
              buttonPanel.add(b4);
              buttonPanel.add(b5);
              t1 = new JTextField ("0",3);               //JTextField contains empty string
              t2 = new JTextField ("0",3);
              t3 = new JTextField ("0",3);
              t4 = new JTextField ("0",3);
              t5 = new JTextField ("0",3);
              t1.setEditable( false );
              t2.setEditable( false );
              t3.setEditable( false );
              t4.setEditable( false );
              t5.setEditable( false );
              responsePanel.setLayout(new GridLayout(5,1));
              responsePanel.add(t1);
              responsePanel.add(t2);
              responsePanel.add(t3);
              responsePanel.add(t4);
              responsePanel.add(t5);
              questionPanel.setLayout(new GridLayout(4,1));
              questionPanel.add(label1);
              questionPanel.add(q1);
              questionPanel.add(q2);
              questionPanel.add(q3);
              centerPanel.add(buttonPanel,BorderLayout.CENTER);
              centerPanel.add(responsePanel,BorderLayout.EAST);
              container.add(centerPanel,BorderLayout.WEST);
              container.add(questionPanel,BorderLayout.NORTH);
              q1.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que1[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp1 = String.valueOf(que1[0]);
              t1.setText(temp1);
              else if (e.getSource() == b2)     {
                   que1[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp2 = String.valueOf(que1[1]);
              t2.setText(temp2);
              else if (e.getSource() == b3)     {
                   que1[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp3 = String.valueOf(que1[2]);
              t3.setText(temp3);
              else if (e.getSource() == b4)     {
                   que1[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp4 = String.valueOf(que1[3]);
              t4.setText(temp4);
              else if (e.getSource() == b5)     {
                   que1[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp5 = String.valueOf(que1[4]);
              t5.setText(temp5);
    } //end action performed
              q2.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que2[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp6 = String.valueOf(que2[0]);
              t1.setText(temp1);
              else if (e.getSource() == b2)     {
                   que2[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp7 = String.valueOf(que2[1]);
              t2.setText(temp7);
              else if (e.getSource() == b3)     {
                   que2[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp8 = String.valueOf(que2[2]);
              t3.setText(temp8);
              else if (e.getSource() == b4)     {
                   que2[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp9 = String.valueOf(que2[3]);
              t4.setText(temp9);
              else if (e.getSource() == b5)     {
                   que2[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp10 = String.valueOf(que2[4]);
              t5.setText(temp10);
    } //end action performed
              q3.addActionListener(
                   new ActionListener(){
              public void actionPerformed( ActionEvent e )          
    {                                        //actionPerformed of all registered listeners
              if (e.getSource() == b1) {
                   que3[0] = Integer.parseInt(t1.getText()) + 1;
                   String temp11 = String.valueOf(que3[0]);
              t1.setText(temp11);
              else if (e.getSource() == b2)     {
                   que3[1] = Integer.parseInt(t2.getText()) + 1;
                   String temp12 = String.valueOf(que3[1]);
              t2.setText(temp12);
              else if (e.getSource() == b3)     {
                   que3[2] = Integer.parseInt(t3.getText()) + 1;
                   String temp13 = String.valueOf(que3[2]);
              t3.setText(temp13);
              else if (e.getSource() == b4)     {
                   que3[3] = Integer.parseInt(t4.getText()) + 1;
                   String temp14 = String.valueOf(que3[3]);
              t4.setText(temp14);
              else if (e.getSource() == b5)     {
                   que3[4] = Integer.parseInt(t5.getText()) + 1;
                   String temp15 = String.valueOf(que3[4]);
              t5.setText(temp15);
    } //end action performed
    }//end constructor test
    public void itemStateChanged(ItemEvent item) {
    //int state = item.getStateChange();
    //if (q1 == item.SELECTED)
              public class ButtonPanel extends JPanel
                   public ButtonPanel()
              public class CenterPanel extends JPanel
                   public CenterPanel()
              public class QuestionPanel extends JPanel
                   public QuestionPanel()
              public class ResponsePanel extends JPanel
                   public ResponsePanel()
    public static void main(String [] args)
         test surveyFrame = new test("Student Survey") ;
         surveyFrame.setSize( 500,300 );
         surveyFrame.setVisible(true);
         surveyFrame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
         }//end main
    }//end class test

    is not abstract and does not override abstract method actionPerformed
    Oh, I see that the title of your post is an error message? Ok. Well, the test class is declared as implementing an ActionListener. That means the test class must have an actionPerformed() method. Your test class apparently does not.
    It does not appear that the test class needs to implement ActionListener. You are using annonymous classes as listeners.

  • Product is not abstract and does not override abstract method

    Received the following errors.
    Product.java:3: Product is not abstract and does not override abstract method ge
    tDisplayText() in Displayable
    public class Product implements Displayable
    ^
    Product.java:16: getDisplayText() in Product cannot implement getDisplayText() i
    n Displayable; attempting to use incompatible return type
    found : void
    required: java.lang.String
    public void getDisplayText()
    ^
    2 errors
    Code reads as follows
    import java.text.NumberFormat;
    public class Product implements Displayable
         private String code;
         private String description;
         private double price;
         public Product()
              this.code = "";
              this.description = "";
              this.price = 0;
    public void getDisplayText()
    String message =
    "Code: " + code + "\n" +
    "Description: " + description + "\n" +
    "Price: " + this.getFormattedPrice() + "\n";
         public Product(String code, String description, double price)
              this.code = code;
              this.description = description;
              this.price = price;
         public void setCode(String code)
              this.code = code;
         public String getCode(){
              return code;
         public void setDescription(String description)
              this.description = description;
         public String getDescription()
              return description;
         public void setPrice(double price)
              this.price = price;
         public double getPrice()
              return price;
         public String getFormattedPrice()
              NumberFormat currency = NumberFormat.getCurrencyInstance();
              return currency.format(price);
    Please help!

    Received the following errors.
    Product.java:3: Product is not abstract and does not
    override abstract method ge
    tDisplayText() in Displayable
    public class Product implements Displayable
    ^
    Product.java:16: getDisplayText() in Product cannot
    implement getDisplayText() i
    n Displayable; attempting to use incompatible return
    type
    found : void
    required: java.lang.String
    public void getDisplayText()
    ^
    2 errors
    Code reads as follows
    Please use the code tags when posting code. There is a code button right above the text box where you enter your post. Click on it and put the code between the code tags.
    These error messages are quite clear in telling what is wrong. You have an Interface called Displayable that specifies a method something like thispublic String getDisplayText() {But in your Product source code, you created thismethodpublic void getDisplayText() {The compiler is complaining because the methods are not the same.
    You also need to return a String in the method probalby like thisreturn message;

  • My ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix

    my ipad screen is black and will not reset and does not come back after restoring, the info is still on internal because i can see it on itunes in the apps catagory it's the display is not working, can see backlight but black...does anyone know how to fix, other than take it to apple.
    thanks!

    The wish list only works on apps you have to pay for. To get it tap the icon of the app you want to save. After it opens at the upper right corner is a box with a arrow. Tap that then tap add to wish list list in the box that opens.

  • Phone shutting off when not using and does not start back up by itself

    I bought the LG Revolution phone 2 1/2 weeks ago and since then twice when I have not been using it, it shuts off by itself and does not power back up until I realize it is off and then I hold down the power key to restart it. It also turns off in the middle of using an app but then restarts itself. Is this a known glitch or is something wrong with this particular phone? Since I am after the 2 week mark, can I exchange it? Or am I out $200 for an issue that isn't my fault?

    tiggerpolo81, I know your phone shutting off and on is very frustrating. I will attempt to assist you with some suggestions to resolve this issue. I researched this issue and found that some customers have reported this as an issue and we have also reported it to our device team. We will attempt to address the issue with any future updates for this phone. In the mean time, I recommend checking to see if a third party app is causing the issue. 
    Safe Mode temporarily disables all applications that have been installed via the Android Market. Performing this step is necessary to determine whether a 3rd party application is the cause of an Operating System / Application issue. 
    Enable Safe Mode
    With the device powered down, press and hold the power button (upper-right corner).
    When the LG Logo screen appears, press and hold the volume down key.
    Release the volume down key when Safe mode is displayed at the lower-left.
    This may take up to 30 seconds.
    Disable Safe Mode
    Press and hold the Power button (upper-right corner).
    Select Restart.
    Additionally , if the issue continues we can review your account and device for warranty replacement options. If the phone is within its one-year manufacturers warranty and have no physical or water damage, it can be replaced with the same model. 

  • HT1222 My software update iOS 6.1 is not downloading and is holding up all other downloads. How can I fix

    Hi my iOS 6.1 software I'd not downloading. It is holding up all other downloads. It tells me 1 min left then tells me 3 hours left. Any ideas?

    Does it say Waiting?
    If there are multiple apps trying to download at once, only one can download at a time and the rest say "Waiting" until it is then their turn. Try this. Double tap the icon of the Waiting app, and it should resume the download.
    How to Solve the Problem of An iPad App Download Stuck on “Waiting”
    http://ipadacademy.com/2012/06/how-to-solve-the-problem-of-an-ipad-app-download- stuck-on-waiting
    Another thing to try - Turn the iPad Off & then back ON.
    If that doesn't work:
    •  Log out of your iTunes store account.  Go to Settings > Store > Sign Out Then press the Home button.
    • Then press and hold the Home and Sleep buttons simultaneously and don't release them when it brings up the Turn Off screen; keep holding them until the Apple logo appears.
    • After restart, the Waiting should be gone.
     Cheers, Tom

  • After a failed attempt to update ipad through itunes, ipad is frozen black, does not respond and does not show in itunes when connected

    I connected my Ipad to my computer and I started itunes. Ipad needed updating so I proceded. Then there was an error and now ipad is not working at all. I have updated itunes, and restarted the computer, but still, now, itunes does not recognize ipad when connected. What can I do?

    Was it EVER jailbroke?

  • What to do when video rental onshows downloaded and does not play?

    I tried to dowbload a video rental on my ipad and can get it to play, when i press the downloaded button it sends me to a "learn about rentals location" I don't think the video has fully downloaded and yet I was charged 4.99 as if the video was rented and downloaded on my ipad. Anything I can do other than contact ipad support?

    I seem to be having the same problem, button says downloaded but greyed out and inactive. I think the same thing has happened to me, not fully downloaded. I left it overnight then went to sleep, think iPad may have shut down.

  • 7942G IP phone does not upgrade and does not accept locale

    Hello everyone!
    I stumbled upon a rather strange behavior on a CP-7942G IP phone. It is a new phone, which I have myself unpacked from the box, along with 2 others.
    Now, the problem is, this particular phone did not load the user-locale, specified in the telephony-services config on the CUCME and did not display the time correctly:
    cnf-file location flash: cnf-file perphone user-locale RU load CME-locale-ru_RU-Russian-7.0.1.1.tar user-locale 2 U1 RU network-locale RU
    While trying to debug what's going on, I eventually unpacked a second phone (same model) and got the same result: the user-locale was English, ASCII. I have downloaded the latest firmware update from the Cisco.com website (version 42.9.3.1.SR2.1S as opposed to previous 42.8.4.2S). Changed the config and restarted the second phone. I has updated it's firmware, restarted and got all settings correctly (Russian, UTF-8, display time).
    The first phone though - the one it has all started with - still has the same problem. I tried to factory-reset it during it's power-on cycle, it tried to update, but looks like it didn't. This is what is shows in the Device Information section on the web-interface:
    App Load ID  jar42sccp.8-4-1-23.sbn Boot Load ID  tnp42.9-3-1-57.bin Version  SCCP42.8-4-2S.bin
    Version  SCCP42.8-4-2S
    I'm not a Cisco pro, but looking in the console logs it seems that the phone does try to apply the locale settings, but reverts to default for some reason (look for text in BOLD):
    |=== Syslogd === Thu Sep 26 10:13:42 2013
    ====================================================
    NOT 10:13:42.736527 JVM: Startup Module Loader|cip.midp.rms.l:? -   loaded entry: _cip_properties.db=/flash0/RMS/appdb/_cip_properties.db
    NOT 10:13:42.737816 JVM: Startup Module Loader - Deletion of file Successful/flash0/RMS/appdb/_cip_properties.dbk
    NOT 10:13:42.739051 JVM: Startup Module Loader - Deletion of file Successful/flash0/RMS/appdb/_cip_properties.dbk
    ERR 10:13:44.409247 JVM: Startup Module Loader|SystemManager:n/a - Encountered Property Exception while getting: device.system.targetmodules
    NOT 10:13:44.483161 JVM: NativeIO assumed to be integrated into the VM
    DBG 10:13:45.112916 lcd_open: return success!
    NOT 10:13:47.776918 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Monospace.font size=13 sty
    NOT 10:13:47.777555 JVM: leFlags=0 tabWidth=0 tabTol=0
    NOT 10:13:47.803214 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Monospace.font size=17 sty
    NOT 10:13:47.803814 JVM: leFlags=0 tabWidth=0 tabTol=0
    NOT 10:13:47.855490 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Unicode.font size=19 style
    NOT 10:13:47.856090 JVM: Flags=0 tabWidth=0 tabTol=0
    NOT 10:13:47.906921 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Unicode.font size=17 style
    NOT 10:13:47.907565 JVM: Flags=0 tabWidth=0 tabTol=0
    NOT 10:13:47.958760 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Unicode.font size=18 style
    NOT 10:13:47.959358 JVM: Flags=0 tabWidth=0 tabTol=0
    NOT 10:13:48.009978 JVM: Font.addRes() owner=class cip.g3.r2d.y this=Font name=Unicode.font size=15 style
    NOT 10:13:48.010602 JVM: Flags=0 tabWidth=0 tabTol=0
    WRN 10:13:48.160504 JVM: Startup Module Loader|Skin:? - Font reference not found for UIComponent=kemtext
    NOT 10:13:48.317399 JVM: MediaTermination assumed to be integrated into the VM
    NOT 10:13:48.821965 JVM: libMT:start SignOn()
    NOT 10:13:48.824926 JVM: *** VIEO should already be running. NO? Start "/ubin/vieo &" now ***
    NOT 10:13:48.825972 JVM: libMT: send _MTStart...
    NOT 10:13:48.831661 JVM: LibMT (vieoProcess.c): registered VIEO callbacks
    DBG 10:13:49.820548 audev: audioHwInit,,,
    DBG 10:13:49.820933 audev: audioHwInit.
    NOT 10:13:49.886879 DSP: _dspdvrStart ok, DSP bootup completed successfully
    NOT 10:13:49.894065 DSP: DSP Tone/Ring DSP initialization completed successfully
    NOT 10:13:49.895646 DSP: dspdvrinitEnableAudioOutput enabled = 1
    NOT 10:13:49.896197 DSP: DSP INIT-*** DSP_STATE_READY***
    NOT 10:13:49.898130 JVM: LibMT: MediaTerminationStart OK!
    NOT 10:13:50.010519 JVM: Startup Module Loader|ComponentController:? - Initializing MVC comp module's trace mechanism
    NOT 10:13:50.123210 JVM: TftpNative assumed to be integrated into the VM
    NOT 10:13:50.574189 JVM: HTTPService assumed to be integrated into the VM
    WRN 10:13:50.879507 SECD: WARN:getCertInfo: ** phone has no LSC
    NOT 10:13:52.372683 DSP: configurationNumber 1, enabled 0
    NOT 10:13:52.379534 DSP: mtSetDeviceBandwidth: Wideband Headset - deviceWideband=0
    NOT 10:13:52.382165 DSP: mtSetDeviceBandwidth: Wideband Handset - deviceWideband=2
    NOT 10:13:52.384033 DSP: mtSetG722Codec: g722enable=0
    NOT 10:13:52.402407 DSP: configurationNumber 0, enabled 0
    NOT 10:13:53.353620 JVM: ENTERING loadSystemProperties
    NOT 10:13:53.355397 JVM: EXITING loadSystemProperties
    WRN 10:13:53.451585 JVM: Startup Module Loader - *******MIDlets Not allowed in REL load*******
    NOT 10:13:53.452824 JVM: Startup Module Loader|cip.midp.midlet.MIDletManager:? - Initializing MIDletManager ...
    NOT 10:13:53.454023 JVM: Startup Module Loader|cip.midp.midlet.MIDletManager:? - Initializing PushRegistry ...
    NOT 10:13:53.950401 CDP-D: configSelectVLAN: 3 OP_USE_CDP:2 oper:101 cdp:101 lldp:4096 admin:4096 mac:0:25:83:85:73:18
    NOT 10:13:53.951035 CDP-D: CDP OP: clear cross ref
    NOT 10:13:53.951487 CDP-D: getCdpExtaInfo: OP:2 Cos:0 Trust:0 lldp.idxOfInterest:-1
    WRN 10:13:53.952071 CDP-D: cdpSetCos T:0 C:0
    NOT 10:13:53.952540 CDP-D: CosTrust:  0 0
    NOT 10:13:53.958093 CDP-D: vvlan changed --> New:101 old:4096 101
    ERR 10:13:53.958658 CDP-D: setVVLANConfig VVLAN CHANGED --> NEW:101 OLD:4096 101
    NOT 10:13:53.963511 CDP-D: vlan Configured --> New:100 old:4096 :100
    NOT 10:13:53.964616 CDP-D: Sent SIGNINFO & SIGIPCFG
    NOT 10:13:53.965261 CDP-D: cdpSetDhcpEnableFlg: SIGNINFO
    NOT 10:13:53.967656 JVM:  setSystemProperty() name=microedition.hostname value=SEPD0C789154FDC
    NOT 10:13:53.969538 JVM:  setSystemProperty() name=microedition.locale value=en
    NOT 10:13:53.971370 JVM:  setSystemProperty() name=microedition.encoding value=ASCII
    NOT 10:13:53.972995 JVM:  setSystemProperty() name=microedition.platform value=CP-7942G/7.0.1
    NOT 10:13:53.974623 JVM:  setSystemProperty() name=com.cisco.device.settings.config.userid value=
    NOT 10:13:54.031701 JVM: Startup Module Loader|cip.midp.pushregistry.f:? - Starting MIDP PushRegistry ...
    NOT 10:13:54.032873 JVM: Startup Module Loader - Deletion of file Successful/flash0/RMS/appdb/MAP1
    NOT 10:13:54.034091 JVM: Startup Module Loader|cip.midp.pushregistry.f:? - MIDP PushRegistry started successfully.
    NOT 10:13:54.035283 JVM: Startup Module Loader|cip.midp.midlet.MIDletManager:? - Initializing MIDP MemberFilter ...
    NOT 10:13:54.036494 JVM: Startup Module Loader|cip.midp.midlet.MIDletManager:? - MIDletManager initialized.
    NOT 10:13:54.259788 JVM: Creating new StateMachineThread
    NOT 10:13:54.409562 PAE: SIGIPCFG received...
    WRN 10:13:54.484755 SECD: WARN:getCTLInfo: ** phone has no CTL
    WRN 10:13:54.488679 SECD: WARN:getCTLInfo: ** phone has no CTL
    NOT 10:13:54.497820 DHCP: DHCP enabled...
    NOT 10:13:54.499483 DHCP:  dhcpSendReq: status 0x12300000
    NOT 10:13:54.500511 DHCP: Sending Request...
    ERR 10:13:54.503878 INETD: Local connect failed: 2
    NOT 10:13:54.526871 CDP-D: catchipcfg:getdhcpinfo IP:0 domain: chngVal:0
    NOT 10:13:54.528288 CDP-D: catchipcfg:getdhcpinfo IP:0 domain: chngVal:0
    NOT 10:13:54.529090 PAE: SIGIPCFG received...
    NOT 10:13:54.530615 DHCP: Enable
    NOT 10:13:54.537357 DHCP:  dhcpSendReq: status 0x12300000
    NOT 10:13:54.537887 DHCP: Sending Request...
    NOT 10:13:54.538902 DHCP: ACK received
    NOT 10:13:54.539424 DHCP: Succeeded
    NOT 10:13:54.541514 ESP: send ADMIN, logging = 1, shell = 0, ipconfig = 1
    NOT 10:13:54.545277 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:54.552395 DHCP: IP Address -- 10.80.129.12
    NOT 10:13:54.552928 DHCP: Subnet Mask - 255.255.255.128
    NOT 10:13:54.553372 DHCP: Default Gwy - 10.80.129.1
    NOT 10:13:54.576800 CDP-D: catchipcfg:getdhcpinfo IP:a50810c domain: chngVal:1
    NOT 10:13:54.578452 PAE: SIGIPCFG received...
    NOT 10:13:54.592996 tftpClient: request server 1 ---> 
    NOT 10:13:54.665767 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:54.666679 ESP: server 0 = 10.80.129.1
    NOT 10:13:54.670348 tftpClient: request server6 0 ---> ::
    NOT 10:13:54.674687 tftpClient: request server 1 ---> 
    NOT 10:13:54.675609 ESP: server 1 = 
    NOT 10:13:54.677936 ESP: send ADMIN, logging = 1, shell = 0, ipconfig = 1
    NOT 10:13:54.683752 tftpClient: request server6 1 ---> ::
    ERR 10:13:54.689776 JVM: GETHOSTBYNAME: Empty Parameter
    WRN 10:13:54.719514 JVM: Startup Module Loader|NetUtil.traceIPv4DNSErrors:? - DNS Unknown Host
    NOT 10:13:54.724673 SECD: updateCTL: starting CTL update
    NOT 10:13:54.726696 SECD: ctlRequestFile: Socket 7 connected to /usr/tmp/tftpClientSock
    NOT 10:13:54.727408 SECD: ctlRequestFile: Request CTLSEPD0C789154FDC.tlv
    NOT 10:13:54.729751 tftpClient: tftp request rcv'd from /usr/tmp/ctlSock, srcFile = CTLSEPD0C789154FDC.tlv, dstFile = /usr/tmp/CTLFile.tlv
    NOT 10:13:54.734219 tftpClient: auth server - tftpList[0] = ::ffff:10.80.129.1
    NOT 10:13:54.734742 tftpClient: look up server - 0
    WRN 10:13:54.736310 SECD: WARN:lookupCTL: CTL update in progress, no old CTL, assume TFTP NONSECURE
    NOT 10:13:54.738353 tftpClient: secVal = 0xa
    NOT 10:13:54.738948 tftpClient: ::ffff:10.80.129.1 is a NONsecure server
    NOT 10:13:54.739405 tftpClient: temp retval = SRVR_NONSECURE, keep looking
    NOT 10:13:54.739866 tftpClient: retval = 10
    NOT 10:13:54.740746 tftpClient: Non secure file requested 
    NOT 10:13:54.749039 TFTP: [31]:Requesting CTLSEPD0C789154FDC.tlv from 10.80.129.1
    NOT 10:13:54.752921 TFTP: [31]:Error --> No such file
    NOT 10:13:54.758291 SYSMSG: pid 31 (/sbin/tftpd) Normal Exit, status = 2
    INF 10:13:54.758326           runtime = 0.010 secs
    INF 10:13:54.758344          user cpu = 0.001067950 secs
    INF 10:13:54.758361        system cpu = 0.003620740 secs
    INF 10:13:54.758374    child user cpu = 0.000000000 secs
    INF 10:13:54.758388     child sys cpu = 0.000000000 secs
    INF 10:13:54.758406    sys interrupts = 0.000427430 secs for 6 interrupts
    INF 10:13:54.758427 total cpu = 0.004688690 secs ( 0% utilization )
    NOT 10:13:54.761297 SECD: ctlRequestFile: tftp Status 2 rcv'd
    NOT 10:13:54.762017 SECD: updateCTL: finished CTL update
    ERR 10:13:54.762581 SECD: EROR:updateCTL: ** had NO CTL and CTL tftp FAILED** tftp-err 2
    NOT 10:13:54.765755 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:54.766486 ESP: server 0 = 10.80.129.1
    NOT 10:13:54.768900 tftpClient: request server 1 ---> 
    NOT 10:13:54.769575 ESP: server 1 = 
    WRN 10:13:54.788934 SECD: WARN:getCTLInfo: ** phone has no CTL
    NOT 10:13:54.801182 tftpClient: tftp request rcv'd from /usr/tmp/tftp, srcFile = SEPD0C789154FDC.cnf.xml, dstFile = /usr/ram/SEPD0C789154FDC.cnf.xml
    NOT 10:13:54.803072 tftpClient: auth server - tftpList[0] = ::ffff:10.80.129.1
    NOT 10:13:54.803598 tftpClient: look up server - 0
    WRN 10:13:54.805232 SECD: WARN:lookupCTL: ** no CTL, assume TFTP NONSECURE
    NOT 10:13:54.807172 tftpClient: secVal = 0xa
    NOT 10:13:54.807773 tftpClient: ::ffff:10.80.129.1 is a NONsecure server
    NOT 10:13:54.808235 tftpClient: temp retval = SRVR_NONSECURE, keep looking
    NOT 10:13:54.808678 tftpClient: retval = 10
    NOT 10:13:54.809110 tftpClient: Secure file requested
    NOT 10:13:54.809523 tftpClient: Non secure file approved  -- SEPD0C789154FDC.cnf.xml 
    NOT 10:13:54.816938 TFTP: [7]:Requesting SEPD0C789154FDC.cnf.xml from 10.80.129.1
    WRN 10:13:54.822003 SECD: WARN:getCTLInfo: ** phone has no CTL
    WRN 10:13:54.825845 SECD: WARN:getCTLInfo: ** phone has no CTL
    NOT 10:13:54.835047 TFTP: [7]:Finished --> rcvd 1456 bytes
    NOT 10:13:55.010336 SECD: clearTFTPList: cleared all TFTP entries
    NOT 10:13:55.046228 JVM: VendorConfig - logging display == 1
    NOT 10:13:55.047554 JVM: VendorConfig - logging display, theValue == 17
    NOT 10:13:55.169337 JVM:  setSystemProperty() name=microedition.encoding value=utf-8
    NOT 10:13:55.171804 JVM:  setSystemProperty() name=microedition.locale value=RU
    ERR 10:13:55.237375 JVM: Startup Module Loader|cip.cfg.r:? - Delete of sshUserInfo file failed
    ERR 10:13:55.238704 JVM: Startup Module Loader|cip.setg.ScreenSaveProperty:? - Config file field <displayOnTime> is incorrectly formatted. Defaulting.
    ERR 10:13:55.240553 JVM: Startup Module Loader|cip.setg.ScreenSaveProperty:? - Config file field <displayIdleTimeout> is incorrectly formatted. Defaulting.
    NOT 10:13:55.246502 SECD: setSecMode: sec mode set to NONE (was NONE)
    NOT 10:13:55.263415 JVM: setTimeZone tz:Russian Standard/Daylight Time ctz:Europe/Moscow
    NOT 10:13:55.595116 SECD: clearSRSTList: cleared all SRST entries
    ERR 10:13:55.646423 JVM: GETHOSTBYNAME: Empty Parameter
    WRN 10:13:55.699101 SECD: WARN:cancelCapfOp: CAPF not in use, user cancel ignored
    NOT 10:13:55.699692 SECD: clearCapfList: CAPF table cleared
    ERR 10:13:55.702675 JVM: GETHOSTBYNAME: Empty Parameter
    ERR 10:13:55.711673 SECD: EROR:addCapfEntry: phone has no CTL, can't use CAPF
    WRN 10:13:55.724535 JVM: Startup Module Loader|NetUtil.traceIPv4DNSErrors:? - DNS Unknown Host
    ERR 10:13:55.725747 JVM: Startup Module Loader|cip.sec.CapfProperty:? - Failed to resolve Capf Ipv4 Address with hostname
    ERR 10:13:55.727617 JVM: Startup Module Loader|cip.sec.CapfProperty:? - dns failed previously.will resolve it now
    WRN 10:13:55.728964 JVM: Startup Module Loader|NetUtil.traceIPv4DNSErrors:? - DNS Unknown Host
    ERR 10:13:55.730207 JVM: Startup Module Loader|cip.sec.CapfProperty:? - Failed to resolve Capf Ipv4 Address with hostname
    NOT 10:13:55.753975 SECD: setSecMode: sec mode set to NONE (was NONE)
    NOT 10:13:55.785279 JVM: Startup Module Loader - Deletion of file Successful/usr/ram/SEPD0C789154FDC.cnf.xml
    NOT 10:13:55.786489 JVM: Startup Module Loader|cip.cfg.r:? - DELETE ConfigFile:(ram/SEPD0C789154FDC.cnf.xml)WAS SUCCESSFUL
    NOT 10:13:55.788171 INETD: Set IP mode 1
    NOT 10:13:55.788705 INETD: Requestted IP mode is same as current mode
    NOT 10:13:55.789870 CDP-D: cdpSetRepeater 11
    NOT 10:13:55.790704 CDP-D: set pc vvlan access --> 26
    NOT 10:13:55.823622 CDP-D: catchipcfg:getdhcpinfo IP:a50810c domain: chngVal:1
    NOT 10:13:55.828991 ESP: send ADMIN, logging = 1, shell = 0, ipconfig = 1
    NOT 10:13:55.830112 DNS: SIGHUP received...
    NOT 10:13:55.832373 PAE: SIGIPCFG received...
    NOT 10:13:55.841392 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:55.842016 tftpClient: tftp request rcv'd from /usr/tmp/tftp, srcFile = User_Define_1/mk-sccp.jar, dstFile = /usr/ram/L10N-1584653765
    NOT 10:13:55.847011 tftpClient: auth server - tftpList[0] = ::ffff:10.80.129.1
    NOT 10:13:55.847529 tftpClient: look up server - 0
    WRN 10:13:55.849117 SECD: WARN:lookupCTL: ** no CTL, assume TFTP NONSECURE
    NOT 10:13:55.851181 tftpClient: secVal = 0xa
    NOT 10:13:55.851781 tftpClient: ::ffff:10.80.129.1 is a NONsecure server
    NOT 10:13:55.852235 tftpClient: temp retval = SRVR_NONSECURE, keep looking
    NOT 10:13:55.852654 tftpClient: retval = 10
    NOT 10:13:55.853080 tftpClient: Secure file requested
    NOT 10:13:55.853491 tftpClient: Non secure file approved  -- User_Define_1/mk-sccp.jar 
    NOT 10:13:55.861589 TFTP: [4]:Requesting User_Define_1/mk-sccp.jar from 10.80.129.1
    NOT 10:13:55.865280 TFTP: [4]:Error --> No such file
    NOT 10:13:55.870648 SYSMSG: pid 4 (/sbin/tftpd) Normal Exit, status = 2
    INF 10:13:55.870685           runtime = 0.010 secs
    INF 10:13:55.870703          user cpu = 0.001025390 secs
    INF 10:13:55.870720        system cpu = 0.002738420 secs
    INF 10:13:55.870733    child user cpu = 0.000000000 secs
    INF 10:13:55.870747     child sys cpu = 0.000000000 secs
    INF 10:13:55.870765    sys interrupts = 0.000473360 secs for 6 interrupts
    INF 10:13:55.870786 total cpu = 0.003763810 secs ( 0% utilization )
    NOT 10:13:55.907442 JVM:  setSystemProperty() name=microedition.encoding value=ASCII
    NOT 10:13:55.909263 JVM:  setSystemProperty() name=microedition.encoding value=ASCII
    NOT 10:13:55.954262 JVM:  setSystemProperty() name=microedition.locale value=en
    NOT 10:13:55.956112 JVM:  setSystemProperty() name=microedition.locale value=en
    WRN 10:13:55.974314 JVM: Startup Module Loader|cip.l10n.UserLocaleProperty:? - Unable to process LocaleProperty 'device.settings.config.localization.userlocale'
    NOT 10:13:55.993687 tftpClient: request server 1 ---> 
    NOT 10:13:56.012450 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:56.013069 tftpClient: tftp request rcv'd from /usr/tmp/tftp, srcFile = United_States/g3-tones.xml, dstFile = /usr/ram/L10N-61391065
    NOT 10:13:56.025036 ESP: server 0 = 10.80.129.1
    NOT 10:13:56.036772 tftpClient: auth server - tftpList[0] = ::ffff:10.80.129.1
    NOT 10:13:56.037342 tftpClient: look up server - 0
    WRN 10:13:56.039157 SECD: WARN:lookupCTL: ** no CTL, assume TFTP NONSECURE
    NOT 10:13:56.041548 tftpClient: secVal = 0xa
    NOT 10:13:56.042149 tftpClient: ::ffff:10.80.129.1 is a NONsecure server
    NOT 10:13:56.042608 tftpClient: temp retval = SRVR_NONSECURE, keep looking
    NOT 10:13:56.043031 tftpClient: retval = 10
    NOT 10:13:56.043464 tftpClient: Secure file requested
    NOT 10:13:56.043876 tftpClient: Non secure file approved  -- United_States/g3-tones.xml 
    NOT 10:13:56.075611 TFTP: [3]:Requesting United_States/g3-tones.xml from 10.80.129.1
    NOT 10:13:56.079347 TFTP: [3]:Error --> No such file
    NOT 10:13:56.084690 SYSMSG: pid 3 (/sbin/tftpd) Normal Exit, status = 2
    INF 10:13:56.084726           runtime = 0.030 secs
    INF 10:13:56.084744          user cpu = 0.001016140 secs
    INF 10:13:56.084761        system cpu = 0.004127440 secs
    INF 10:13:56.084774    child user cpu = 0.000000000 secs
    INF 10:13:56.084788     child sys cpu = 0.000000000 secs
    INF 10:13:56.084806    sys interrupts = 0.000648400 secs for 10 interrupts
    INF 10:13:56.084827 total cpu = 0.005143580 secs ( 0% utilization )
    WRN 10:13:56.152126 JVM: Startup Module Loader|cip.l10n.NetworkLocaleProperty:? - Unable to process LocaleProperty 'device.settings.config.localization.networklocale'
    WRN 10:13:56.185037 SECD: WARN:lookupCTL: ** no CTL, assume UCM NONSECURE
    NOT 10:13:56.201903 JVM: Adding SRST .. #valid : 1
    WRN 10:13:56.205891 SECD: WARN:lookupSRST: no CTL, treat SRST as non-secure
    NOT 10:13:56.211795 JVM: Done with SRST: 1
    NOT 10:13:56.274791 tftpClient: request server 1 ---> 
    NOT 10:13:56.275707 ESP: server 1 = 
    NOT 10:13:56.352535 tftpClient: request server6 0 ---> ::
    NOT 10:13:56.359771 tftpClient: request server6 1 ---> ::
    NOT 10:13:56.407633 JVM: SecureSocketImpl.create() fd=java.io.FileDescriptor@111f4 valid=true
    WRN 10:13:57.135911 JVM: Startup Module Loader|cip.mmgr.ds:? - [MediaMgrSM]: Unhandled Event, State = StateOnHook Event = EventServicesTxStop
    WRN 10:13:57.149565 SECD: WARN:getCTLInfo: ** phone has no CTL
    WRN 10:13:57.153827 SECD: WARN:getCTLInfo: ** phone has no CTL
    NOT 10:13:57.165025 tftpClient: request server 0 ---> 10.80.129.1
    NOT 10:13:57.178308 tftpClient: request server 1 ---> 
    NOT 10:13:57.243532 tftpClient: request server6 0 ---> ::
    NOT 10:13:57.249934 tftpClient: request server6 1 ---> ::
    ERR 10:14:39.590147 NTP: Thu Sep 26 09:14:39 2013
    ERR 10:14:57.374505 JVM: cvmDebug: executing - 5. Dump total obj counts in java heap
    ERR 10:14:57.386075 JVM: Counted 27546 objects
    ERR 10:14:57.386815 JVM: Total Heap Size:3800064
    ERR 10:14:57.387491 JVM:  Free Heap Size:2771660
    ERR 10:14:58.370281 JVM: cvmDebug: executing - 7. Dump string value of [C instances in java heap
    ERR 10:16:48.404683 JVM: cvmDebug: executing - 5. Dump total obj counts in java heap
    ERR 10:16:48.419137 JVM: Counted 34953 objects
    ERR 10:16:48.419359 JVM: Total Heap Size:3800064
    ERR 10:16:48.419512 JVM:  Free Heap Size:2329208
    ERR 10:16:49.400355 JVM: cvmDebug: executing - 7. Dump string value of [C instances in java heap
    WRN 10:16:52.068040 CDP-D: lldpInetdStatsRsp: port: 0
    WRN 10:16:53.007959 CDP-D: lldpInetdStatsRsp: port: 1
    WRN 10:16:53.947877 CDP-D: lldpInetdStatsRsp: port: 0
    WRN 10:18:53.378017 CDP-D: lldpInetdStatsRsp: port: 0
    WRN 10:18:55.337826 CDP-D: lldpInetdStatsRsp: port: 1
    Any ideas what can be done? The phone now displays the time correctly, but the second button shows empty squares where the "Login" button should be. All the rest of the phone inteface is in English.

    For some veru strange reason the problem... resolved itself.
    I had to remove the phone from the Ethernet line today, because I needed it. I then re-plugged decided to re-plug it back(in about 10 minutes from the initial power off) and voila: the phone sucessfully updated itself and received the right locale...
    I wish I knew what was the real problem behind this.
    I did change the config on CUCME today, but I have just added a "Text to display on phones" (command "system message"). I then re-created CNF files (but I have tried that already last week).
    Maybe the stars aligned in a different way today, I don't know...

  • N97 freezes, does not restore and does not install...

    Having read a few of the problems that some people have out there, I think my issue is more serious than half of them out there.
    Here's how it started:
    I bought the Nokia N97 and used Bluetooth to transfer my contacts from my N95. Right from the bat, the phone would freeze at some points. This was usually right after an incoming call would end, and the phone screen would still display the options for answering or rejecting the call. In fact, the freeze was pretty weird because even though everything was frozen, the little "phone" icon would still flash between yellow and green colors.
    Anyway, I thought maybe it needed an update, so I updated it to the latest v11.0.21 version, but this didn't change things at all.
    So, when v12 came out, I was full of hope. My Ovi Suite was saying that I should update my phone, so I did. 
    The problem is that the installation was not successful. The Ovi Suite says that the phone disconnected even though I am much too careful to disconnect the USB cable or even touch it during the update.
    This was two days ago, and I was left with a phone that wouldn't even turn on.
    I took it to the Nokia Service Point yesterday and today it was working again. Fantastic, so far!
    The problem is that now, the Ovi Suite cannot restore my contacts to the phone. Again, it says that the connection is interrupted, no matter how many times I've tried this.
    The Ovi Suite also says that it cannot install the Support Software on the phone. It just says that the installation fails as soon as it starts.
    So, with some 300+ contacts, the phone is pretty useless to me.
    Any thoughts?
    Thank you in advance,
    George
    Attachments:
    nokia2.jpg ‏48 KB
    nokia.jpg ‏82 KB

    http://betalabs.nokia.com/ovisuite
    do you have the latest release of ovi suite, beta 2? if you don't start there. update your software to this release and see if the same thing happens.  
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

Maybe you are looking for

  • HOw to find the BAPI function module

    Hi all, I have a field called IEVER in table EIKP. How to find the related BAPI function module and BAPI structure for this filed. Thanks in advance KP

  • Grid on every image

    Every image that opens in PS has the grid on, I'm having to hide it every time. Unsure why this has started happening, hope somebody may know why? Alex

  • Two week old refurb i7 has "died"

    I put died in quotes because it isn't totally dead. Here's what happened. I had been using Safari for quite some time. I decided to watch a TV show I had in iTunes. iTunes was already running. I selected the TV show I wanted to watch and double click

  • Convert page co-ordinate to page item co-ordinate

    Hello All, I have problem regarding co-ordinate system. I have Rects in page co-ordinate system  and want to convert with respect to pageItem co-ordinate. This Rects are resides within a frame, my requirement is to convert pagecoordinateRect to inner

  • Having a print problem on a mailing label report using the merge modules.

    Crystal Reports 2008 v 12.1.6.1116 when I print directly from Crystal Reports designer, the labels print correctly.  If I print the report from our application software using the Crystal merge module, the top of page margin is not the same. I am usin