Strange Install Error. Please help.

I am getting the following error when I try to load an applet in either Microsoft Internet Explorer or Mozilla 1.5:
Java Plug-In 1.3.1_01 cannot be located because values in the registry key HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.3.1_01 is not found or is no longer valid.
I have reinstalled JDK 1.4.1_05 to no avail. I have installed 1.3.1_09 to no avail and had it plug in. Is there anyway in the browser to check the plugin settings?
Thanks

I don't work with applets at all really, but a colleague told me about a problem comparable to this which they encountered in Windows XP on clients with multiple JDKs installed. I think the user had to either remove the Control Panel module for the older JDK or open the module in Control Panel and disable the older version. Does this issue happen when you try to use a commercial applet? If so, you may want to contact their tech support- they've probably seen the issue before.

Similar Messages

  • Installing error please help

    I went to go and upgrade my itunes because my capabillity of buring and importing cd's some how deleted itself and i went to install the new version of itunes and i keep getting an error that goes ..." title (itunes + quicktime) Unable to install the GEAR driver set at this time. The GEARAspiWDM service by the GEAR driver set is scheduled to be deleted during the next system reboot. Please reboot the system and run itunes again...." mind you i have rebooted my computer about 10 times trying to do this and everytime i go to (re)install it this error keep popping up. i even unistalled itunes and quicktime both and restarted and still this keeps popping up. can someone please help. thank you
    - suede`-

    With that one, let's try getting an iTunes installer log to the Apple Engineers for a look.
    1. Open a command prompt window. (Start menu -> Run. Type in "cmd". Hit return.)
    2. Drag and drop iTunesSetup.exe onto the window so that the full pathname of the file is at the command line prompt.
    3. Type in a space, then the following line:
    /l*v C:\log.txt
    4. Hit return.
    5. The installer will create a log file:
    C:\log.txt
    Find that file and send it as an attachment to this email address.
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - the version of Windows you are using (mention service packs)
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing

  • Very strange compile error PLEASE HELP

    in one class (Slanje) I defined method
    public void(String host,String from,String to,String subject,String messagetext){.....
    in other (Prikaz) I create an instance of class Slanje and try to use:
    Slanje n=new Slanje();
    n.infos(host,from,to,subjecta,poruka);
    where to and subjecta getting from JTextField, using method getText();
    but get following error mesage:
    C:\javafile\samostalni\Mailpr\Prikaz.java:117: infos(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) in Slanje cannot be applied to (java.lang.String,java.lang.String,java.lang.String,javax.swing.JTextField,java.lang.String)
              n.infos(host,from,to,subjecta,poruka);
    I don't get it. what is the difference, both takes String

    I know, but isn't it string because I used getText;
    anyway how can I avoid that.
    Is there some another way ( I tried to use cast operator (String)) but no success.
    Help me someone, please!

  • Strange input errors, please help

    ok, Ive been following a tutorial located here. I just got to section 2.4 and the tutorial says that it would be easier to allow input with his program. So I downloaded his program, compiled it, cheked to make sure that the compiled TextIO.class was in the right place. (BTW, Im running NetBeans IDE 4.0 beta 2). This is my program...:
    public class helloworld2 {
        // a prog to display hello world
        public static void main(String[] args) {
            double hellonumber;
            double hellonumber2;
            int userImput; //imput tut. the number imputed
            int square; //imput tut. userimput squared
            hellonumber = 7777;
            hellonumber2 = 6666;
            System.out.println("Hello World"); // how to print words
            System.out.print(hellonumber); // variable use....duh
            System.out.println(" Is the number of the day");
            System.out.print(hellonumber2); // and again
            System.out.println(" Is the other number of the day");
            System.out.print("The square root of the number of the day is ");
            System.out.println(Math.sqrt(7777)); // square root
            System.out.print("Wow! The amount of letters in this sentance is ");
            System.out.println("Wow! The amount of letters in this sentance is".length()); //this is used to count letters, punctuation, and spaces in the aforementioned sentance
            System.out.println("cat".toUpperCase()); //makes aforementioned sentance in all caps
            System.out.println("CAT".toLowerCase()); // same as above but opposite
            //begin imput tut.
            System.out.print("Please type a number: ");
            userImput = TextIO.getInt();
            square = userImput * userImput;
            System.out.print("The square of that number is ");
            System.out.println(square);
    }       //doneThis is the program I got off of the tutorial site, it is supposed to make input easier, but instead gets errors
    The file defines a class TextIO, which provides a simple interface
    to Java's standard console input and output. This class defines
    several static methods for reading and writing
    values of various type.
    This class will only work with standard, interactive applications.
    When it is used in such an application, System.out and System.in
    should not be used directly, since the TextIO class thinks it has
    exclusive control of System.out and System.in. (Actually, using
    System.out will probably not cause any problems, but don't use
    System.in.)
    To use this class in your program, simply include the compiled class
    file TextIO.class in the same directory with the class file for your
    main program. (If you are using a development environment such as
    CodeWarrior or Visual J++, you can include the source file,
    TextIO.java in your project.) You can then use all the public static methods
    from the TextIO class in your program. (In your programs, the names
    of the methods must be prefaced with "TextIO." For example, you should
    use the name TextIO.getln() rather than simply getln().)
    (This class is for use with my on-line introductory java textbook,
    which is available at http://math.hws.edu/eck/cs124/notes/index.html.)
    Written by: David Eck
    Department of Mathematics and Computer Science
    Hobart and William Smith Colleges
    Geneva, NY 14456
    Email: [email protected]
    WWW: http://math.hws.edu/eck/
    July 16, 1998
    Modified February, 2000; getChar() now skips blanks and CR's, and getAnyChar()
    can be used to read the next char even if it's a blank or CR.
    import java.io.*;
    public class TextIO {
    // *************************** I/O Methods *********************************
    // Methods for writing the primitive types, plus type String,
    // to the console, with no extra spaces.
    // Note that the real-number data types, float
    // and double, a rounded version is output that will
    // use at most 10 or 11 characters. If you want to
    // output a real number with full accuracy, use
    // "TextIO.put(String.valueOf(x))", for example.
    public static void put(int x) { put(x,0); } // Note: also handles byte and short!
    public static void put(long x) { put(x,0); }
    public static void put(double x) { put(x,0); } // Also handles float.
    public static void put(char x) { put(x,0); }
    public static void put(boolean x) { put(x,0); }
    public static void put(String x) { put(x,0); }
    // Methods for writing the primitive types, plus type String,
    // to the console,followed by a carriage return, with
    // no extra spaces.
    public static void putln(int x) { put(x,0); newLine(); } // Note: also handles byte and short!
    public static void putln(long x) { put(x,0); newLine(); }
    public static void putln(double x) { put(x,0); newLine(); } // Also handles float.
    public static void putln(char x) { put(x,0); newLine(); }
    public static void putln(boolean x) { put(x,0); newLine(); }
    public static void putln(String x) { put(x,0); newLine(); }
    // Methods for writing the primitive types, plus type String,
    // to the console, with a minimum field width of w,
    // and followed by a carriage return.
    // If output value is less than w characters, it is padded
    // with extra spaces in front of the value.
    public static void putln(int x, int w) { put(x,w); newLine(); } // Note: also handles byte and short!
    public static void putln(long x, int w) { put(x,w); newLine(); }
    public static void putln(double x, int w) { put(x,w); newLine(); } // Also handles float.
    public static void putln(char x, int w) { put(x,w); newLine(); }
    public static void putln(boolean x, int w) { put(x,w); newLine(); }
    public static void putln(String x, int w) { put(x,w); newLine(); }
    // Method for outputting a carriage return
    public static void putln() { newLine(); }
    // Methods for writing the primitive types, plus type String,
    // to the console, with minimum field width w.
    public static void put(int x, int w) { dumpString(String.valueOf(x), w); } // Note: also handles byte and short!
    public static void put(long x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(double x, int w) { dumpString(realToString(x), w); } // Also handles float.
    public static void put(char x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(boolean x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(String x, int w) { dumpString(x, w); }
    // Methods for reading in the primitive types, plus "words" and "lines".
    // The "getln..." methods discard any extra input, up to and including
    // the next carriage return.
    // A "word" read by getlnWord() is any sequence of non-blank characters.
    // A "line" read by getlnString() or getln() is everything up to next CR;
    // the carriage return is not part of the returned value, but it is
    // read and discarded.
    // Note that all input methods except getAnyChar(), peek(), the ones for lines
    // skip past any blanks and carriage returns to find a non-blank value.
    // getln() can return an empty string; getChar() and getlnChar() can
    // return a space or a linefeed ('\n') character.
    // peek() allows you to look at the next character in input, without
    // removing it from the input stream. (Note that using this
    // routine might force the user to enter a line, in order to
    // check what the next character is.)
    // Acceptable boolean values are the "words": true, false, t, f, yes,
    // no, y, n, 0, or 1; uppercase letters are OK.
    // None of these can produce an error; if an error is found in input,
    // the user is forced to re-enter.
    // Available input routines are:
    // getByte() getlnByte() getShort() getlnShort()
    // getInt() getlnInt() getLong() getlnLong()
    // getFloat() getlnFloat() getDouble() getlnDouble()
    // getChar() getlnChar() peek() getAnyChar()
    // getWord() getlnWord() getln() getString() getlnString()
    // (getlnString is the same as getln and is only provided for consistency.)
    public static byte getlnByte() { byte x=getByte(); emptyBuffer(); return x; }
    public static short getlnShort() { short x=getShort(); emptyBuffer(); return x; }
    public static int getlnInt() { int x=getInt(); emptyBuffer(); return x; }
    public static long getlnLong() { long x=getLong(); emptyBuffer(); return x; }
    public static float getlnFloat() { float x=getFloat(); emptyBuffer(); return x; }
    public static double getlnDouble() { double x=getDouble(); emptyBuffer(); return x; }
    public static char getlnChar() { char x=getChar(); emptyBuffer(); return x; }
    public static boolean getlnBoolean() { boolean x=getBoolean(); emptyBuffer(); return x; }
    public static String getlnWord() { String x=getWord(); emptyBuffer(); return x; }
    public static String getlnString() { return getln(); } // same as getln()
    public static String getln() {
    StringBuffer s = new StringBuffer(100);
    char ch = readChar();
    while (ch != '\n') {
    s.append(ch);
    ch = readChar();
    return s.toString();
    public static byte getByte() { return (byte)readInteger(-128L,127L); }
    public static short getShort() { return (short)readInteger(-32768L,32767L); }
    public static int getInt() { return (int)readInteger((long)Integer.MIN_VALUE, (long)Integer.MAX_VALUE); }
    public static long getLong() { return readInteger(Long.MIN_VALUE, Long.MAX_VALUE); }
    public static char getAnyChar(){ return readChar(); }
    public static char peek() { return lookChar(); }
    public static char getChar() { // skip spaces & cr's, then return next char
    char ch = lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    return readChar();
    public static float getFloat() {
    float x = 0.0F;
    while (true) {
    String str = readRealString();
    if (str.equals("")) {
    errorMessage("Illegal floating point input.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    else {
    Float f = null;
    try { f = Float.valueOf(str); }
    catch (NumberFormatException e) {
    errorMessage("Illegal floating point input.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    continue;
    if (f.isInfinite()) {
    errorMessage("Floating point input outside of legal range.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    continue;
    x = f.floatValue();
    break;
    return x;
    public static double getDouble() {
    double x = 0.0;
    while (true) {
    String str = readRealString();
    if (str.equals("")) {
    errorMessage("Illegal floating point input",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    else {
    Double f = null;
    try { f = Double.valueOf(str); }
    catch (NumberFormatException e) {
    errorMessage("Illegal floating point input",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    continue;
    if (f.isInfinite()) {
    errorMessage("Floating point input outside of legal range.",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    continue;
    x = f.doubleValue();
    break;
    return x;
    public static String getWord() {
    char ch = lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    StringBuffer str = new StringBuffer(50);
    while (ch != ' ' && ch != '\n') {
    str.append(readChar());
    ch = lookChar();
    return str.toString();
    public static boolean getBoolean() {
    boolean ans = false;
    while (true) {
    String s = getWord();
    if ( s.equalsIgnoreCase("true") || s.equalsIgnoreCase("t") ||
    s.equalsIgnoreCase("yes") || s.equalsIgnoreCase("y") ||
    s.equals("1") ) {
    ans = true;
    break;
    else if ( s.equalsIgnoreCase("false") || s.equalsIgnoreCase("f") ||
    s.equalsIgnoreCase("no") || s.equalsIgnoreCase("n") ||
    s.equals("0") ) {
    ans = false;
    break;
    else
    errorMessage("Illegal boolean input value.",
    "one of: true, false, t, f, yes, no, y, n, 0, or 1");
    return ans;
    // ***************** Everything beyond this point is private *******************
    // ********************** Utility routines for input/output ********************
    private static InputStream in = System.in; // rename standard input stream
    private static PrintStream out = System.out; // rename standard output stream
    private static String buffer = null; // one line read from input
    private static int pos = 0; // position of next char in input line that has
    // not yet been processed
    private static String readRealString() { // read chars from input following syntax of real numbers
    StringBuffer s=new StringBuffer(50);
    char ch=lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch == ' ') {
    readChar();
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (ch == '.') {
    s.append(readChar());
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (ch == 'E' || ch == 'e') {
    s.append(readChar());
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    return s.toString();
    private static long readInteger(long min, long max) { // read long integer, limited to specified range
    long x=0;
    while (true) {
    StringBuffer s=new StringBuffer(34);
    char ch=lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch == ' ') {
    readChar();
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (s.equals("")){
    errorMessage("Illegal integer input.",
    "Integer in the range " + min + " to " + max);
    else {
    String str = s.toString();
    try {
    x = Long.parseLong(str);
    catch (NumberFormatException e) {
    errorMessage("Illegal integer input.",
    "Integer in the range " + min + " to " + max);
    continue;
    if (x < min || x > max) {
    errorMessage("Integer input outside of legal range.",
    "Integer in the range " + min + " to " + max);
    continue;
    break;
    return x;
    private static String realToString(double x) {
    // Goal is to get a reasonable representation of x in at most
    // 10 characters, or 11 characters if x is negative.
    if (Double.isNaN(x))
    return "undefined";
    if (Double.isInfinite(x))
    if (x < 0)
    return "-INF";
    else
    return "INF";
    if (Math.abs(x) <= 5000000000.0 && Math.rint(x) == x)
    return String.valueOf( (long)x );
    String s = String.valueOf(x);
    if (s.length() <= 10)
    return s;
    boolean neg = false;
    if (x < 0) {
    neg = true;
    x = -x;
    s = String.valueOf(x);
    if (x >= 0.00005 && x <= 50000000 && (s.indexOf('E') == -1 && s.indexOf('e') == -1)) { // trim x to 10 chars max
    s = round(s,10);
    s = trimZeros(s);
    else if (x > 1) { // construct exponential form with positive exponent
    long power = (long)Math.floor(Math.log(x)/Math.log(10));
    String exp = "E" + power;
    int numlength = 10 - exp.length();
    x = x / Math.pow(10,power);
    s = String.valueOf(x);
    s = round(s,numlength);
    s = trimZeros(s);
    s += exp;
    else { // constuct exponential form
    long power = (long)Math.ceil(-Math.log(x)/Math.log(10));
    String exp = "E-" + power;
    int numlength = 10 - exp.length();
    x = x * Math.pow(10,power);
    s = String.valueOf(x);
    s = round(s,numlength);
    s = trimZeros(s);
    s += exp;
    if (neg)
    return "-" + s;
    else
    return s;
    private static String trimZeros(String num) { // used by realToString
    if (num.indexOf('.') >= 0 && num.charAt(num.length() - 1) == '0') {
    int i = num.length() - 1;
    while (num.charAt(i) == '0')
    i--;
    if (num.charAt(i) == '.')
    num = num.substring(0,i);
    else
    num = num.substring(0,i+1);
    return num;
    private static String round(String num, int length) { // used by realToString
    if (num.indexOf('.') < 0)
    return num;
    if (num.length() <= length)
    return num;
    if (num.charAt(length) >= '5' && num.charAt(length) != '.') {
    char[] temp = new char[length+1];
    int ct = length;
    boolean rounding = true;
    for (int i = length-1; i >= 0; i--) {
    temp[ct] = num.charAt(i);
    if (rounding && temp[ct] != '.') {
    if (temp[ct] < '9') {
    temp[ct]++;
    rounding = false;
    else
    temp[ct] = '0';
    ct--;
    if (rounding) {
    temp[ct] = '1';
    ct--;
    // ct is -1 or 0
    return new String(temp,ct+1,length-ct);
    else
    return num.substring(0,length);
    private static void dumpString(String str, int w) { // output string to console
    for (int i=str.length(); i<w; i++)
    out.print(' ');
    for (int i=0; i<str.length(); i++)
    if ((int)str.charAt(i) >= 0x20 && (int)str.charAt(i) != 0x7F) // no control chars or delete
    out.print(str.charAt(i));
    else if (str.charAt(i) == '\n' || str.charAt(i) == '\r')
    newLine();
    private static void errorMessage(String message, String expecting) {
    // inform user of error and force user to re-enter.
    newLine();
    dumpString(" *** Error in input: " + message + "\n", 0);
    dumpString(" *** Expecting: " + expecting + "\n", 0);
    dumpString(" *** Discarding Input: ", 0);
    if (lookChar() == '\n')
    dumpString("(end-of-line)\n\n",0);
    else {
    while (lookChar() != '\n')
    out.print(readChar());
    dumpString("\n\n",0);
    dumpString("Please re-enter: ", 0);
    readChar(); // discard the end-of-line character
    private static char lookChar() { // return next character from input
    if (buffer == null || pos > buffer.length())
    fillBuffer();
    if (pos == buffer.length())
    return '\n';
    return buffer.charAt(pos);
    private static char readChar() { // return and discard next character from input
    char ch = lookChar();
    pos++;
    return ch;
    private static void newLine() { // output a CR to console
    out.println();
    out.flush();
    private static boolean possibleLinefeedPending = false;
    private static void fillBuffer() { // Wait for user to type a line and press return,
    // and put the typed line into the buffer.
    StringBuffer b = new StringBuffer();
    out.flush();
    try {
    int ch = in.read();
    if (ch == '\n' && possibleLinefeedPending)
    ch = in.read();
    possibleLinefeedPending = false;
    while (ch != -1 && ch != '\n' && ch != '\r') {
    b.append((char)ch);
    ch = in.read();
    possibleLinefeedPending = (ch == '\r');
    if (ch == -1) {
    System.out.println("\n*** Found an end-of-file while trying to read from standard input!");
    System.out.println("*** Maybe your Java system doesn't implement standard input?");
    System.out.println("*** Program will be terminated.\n");
    throw new RuntimeException("End-of-file on standard input.");
    catch (IOException e) {
    System.out.println("Unexpected system error on input.");
    System.out.println("Terminating program.");
    System.exit(1);
    buffer = b.toString();
    pos = 0;
    private static void emptyBuffer() { // discard the rest of the current line of input
    buffer = null;
    } // end of class TextIOI know that it is a mouthful, but I go it off the tutorial site. When it didnt work, I persued finding another input program. I found one on this forum:
    import java.io.*;
    public class MyInput {
      /**Read a string from the keyboard*/
      public static String readString()
        BufferedReader br
          = new BufferedReader(new InputStreamReader(System.in), 1);
        // Declare and initialize the string
        String string = " ";
        // Get the string from the keyboard
        try
          string = br.readLine();
        catch (IOException ex)
          System.out.println(ex);
        // Return the string obtained from the keyboard
        return string;
      /**Read an int value from the keyboard*/
      public static int readInt()
        return Integer.parseInt(readString());
      /**Read a double value from the keyboard*/
      public static double readDouble()
        return Double.parseDouble(readString());
    }and made a new small program to test it:
    public class Driver
         public static void main ( String[] args)
              System.out.println("Enter a number");
              int number = MyInput.readInt();
              System.out.println("number entered "+ number);
              System.out.println("Enter another number");
              number = MyInput.readInt();
              System.out.println("number entered "+ number);
    the output:
    init:
    deps-jar:
    compile-single:
    run-single:
    Enter a number
    Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:415)
    at java.lang.Integer.parseInt(Integer.java:497)
    at MyInput.readInt(MyInput.java:32)
    at Driver.main(Driver.java:6)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 0 seconds)
    I REALLY appreciate your help. Im a n00b by definition, but would really like to get into the java community. I have minimal C++ knowledge. anyway, Thanks for looking over all of this n00bish garbage.

    Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:415)
    at java.lang.Integer.parseInt(Integer.java:497)
    at MyInput.readInt(MyInput.java:32)This tells you that there was a NumberFormatException and that the value which was not a number was "null". You can guess what NumberFormatException means, or if you can't possibly imagine then you can look it up in the API documentation.
    It also tells you that it was caused by line 32 of your MyInputClass (the last line of the stack trace) and that you were calling Integer.parseInt in that line (the line just above that).
    Your thousand lines of code are all very well but I don't know which one of them is line 32. Your text editor should be able to tell you that. Find out why that line of code is passing null to Integer.parseInt.

  • Strange Forms Error - please help!

    Hello,
    I have a form that utilizes WebUtil to upload/download files to and from the application server. On this form the user can click a "Create New" button that will make the following call:
    document_list := WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG(directory_name => NULL,
    file_name => NULL,
    file_filter => NULL,
    title => NULL,
    dialog_type => OPEN_FILE,
    select_file => TRUE);
    The user will select the files they want to upload and close the file dialog box. Most of the time this completes successfully and the process is carried out at expected ... no problems. Occassionally, however, when the file dialog box is closed and the user is returned to the form they can no longer click in text fields and edit their contents. They can still click buttons and change list items but the text fields, for whatever reason, can not be changed. When in this state, they can navigate to another form and experience the same problem - they can't edit any text fields.
    I have captured the java console messages for a successful file selection versus an unsuccessful one (servernames, etc have been edited out for security purposes) - I have labelled and pasted those groups of messages below.
    This problem has been driving us mad because we can't seem to nail down under what scenario the problem occurs - the type, size, location, etc of the file does not seem to matter and this issue could happen the first time you select a file or the 50th time you select one ... it seems completely random.
    Can anyone help? Any suggestions?
    Successful file selection:
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_FILENAME to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_FILTER to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to TRUE
    2007-Jan-31 07:05:25.386 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2007-Jan-31 07:05:25.511 WUF[gfnDialog()] Open File mode
    Modality pushed
    Modality popped
    2007-Jan-31 07:05:28.229 WUF[gfnDialog()] Multiple selection result: \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\
    A01161.0001.pdf
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Value of WUF_GFN_OPENFILE=\\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\
    A01161.0001.pdf
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:05:28.229 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:05:28.229 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 6
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=19634
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Loading Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loaded Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loading Https Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loaded Https Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loading JPI Https certificates from C:\Documents and Settings\jjhenry\Application Data\Sun\Java\Deployment\security\deployment.jssecerts
    Loaded JPI Https certificates from C:\Documents and Settings\jjhenry\Application Data\Sun\Java\Deployment\security\deployment.jssecerts
    Loading certificates from JPI session certificate store
    Loaded certificates from JPI session certificate store
    Checking if certificate is in JPI session certificate store
    Checking if Https certificate is in JPI permanent certificate store
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.489 WUT[getProperty()] Getting property WUT_MAX_BYTES
    2007-Jan-31 07:08:32.505 WUT[getProperty()] Value of WUT_MAX_BYTES=16384
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.598 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:08:32.598 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 2
    2007-Jan-31 07:08:32.598 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.645 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:08:32.645 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=FALSE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.645 WUT[getProperty()] Getting property WUT_STATUS
    2007-Jan-31 07:08:32.645 WUT[getProperty()] Value of WUT_STATUS=FREE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.661 WUT[setProperty()] Setting property WUT_FILE_INFO to \\Oxxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf|0|S|Y|Upload in progress|Please wait
    2007-Jan-31 07:08:32.661 WUT[getProperty()] Getting property WUT_FILE_INFO
    2007-Jan-31 07:08:32.661 WUT[getProperty()] Value of WUT_FILE_INFO=19634|2
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.989 WUT[UploadAgent()] File Opened:\\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:33.51 WUT[UploadAgent.getDataInt()] File Closed
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Unsuccessful file selection:
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_FILENAME to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_FILTER to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to TRUE
    2007-Jan-31 07:02:24.376 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2007-Jan-31 07:02:24.766 WUF[gfnDialog()] Open File mode
    2007-Jan-31 07:02:27.969 WUF[gfnDialog()] Multiple selection result: \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\
    At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.969 WUF[getProperty()] Value of WUF_GFN_OPENFILE=\\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\
    At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.985 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.985 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 6
    2007-Jan-31 07:02:27.985 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:02:27.985 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=19257
    2007-Jan-31 07:03:23.483 WUT[getProperty()] Getting property WUT_MAX_BYTES
    2007-Jan-31 07:03:23.483 WUT[getProperty()] Value of WUT_MAX_BYTES=16384
    2007-Jan-31 07:03:23.593 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:23.593 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 2
    2007-Jan-31 07:03:23.593 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE
    2007-Jan-31 07:03:23.624 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:23.624 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=FALSE
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Getting property WUT_STATUS
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Value of WUT_STATUS=FREE
    2007-Jan-31 07:03:23.640 WUT[setProperty()] Setting property WUT_FILE_INFO to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg|0|S|Y|Upload in progress|Please wait
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Getting property WUT_FILE_INFO
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Value of WUT_FILE_INFO=19257|2
    2007-Jan-31 07:03:23.983 WUT[UploadAgent()] File Opened:\\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:24.46 WUT[UploadAgent.getDataInt()] File Closed

    One of the differences I've noticed is that the two messages:
    Modality pushed
    Modality popped
    do not appear when the file selection is unsuccessful ....
    Unfortunately I don't have the experience necessary to determine what kind, if any, of error/issue this suggests ... can anyone help with this piece of the puzzle?

  • HT1893 HP c7280 Install Error - Please help!!

    When I try to install my HP c7280, Apple keeps coming back with the error of 'Can't install the software for the HP Photosmart c7200 series because it is not currently available from the software update server' and it won't let me install. Help?

    Hello,
    If getting the driver fails be sure to restart your Mac and try again.
    If the same persists go to Librrary\Printers and Remove the HP folder.
    Enter PPD\Resources\Contents search for C7200 and remove the file.. then try adding the printer again.
    If there is still no change reset the printing system and try again:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01371980&lc=en &product=1153481
    If still no luck download and install this package:
    http://support.apple.com/kb/DL907
    Then it should be added with no issues.
    Shlomi

  • SAP R3 install error- please help

    While i'm running SAP 4.6 R/3 setup for Central service, i got this error and i did not understand what can i
    modify to fix the problem. The install dir. is actually root dir. Could you suggest me the fix to proceed with the installation.
    info: InstController MakeStepsDeliver 2 583
    Creating the SAP System Administrator
    Info: InstController MakeStepsDeliver 2 617
    Creating Directories
    Warning: R3DIRECTORIES_IND_IND SyDirCreate 2 617
    errno: 2: No such file or directory
    Warning: R3DIRECTORIES_IND_IND SyDirCreate 2 617
    Function mkdir() failed for  at location SyDirCreate-1200
    Error: R3DIRECTORIES_IND_IND Ins_SetupDirectories 2 617
    can not setup directory '/'
    Error: R3DIRECTORIES_IND_IND InstallationDo 2 617
    Phase failed.
    Error: Main {} 2 617
    Installation aborted.
    Thanks,
    Ram

    Once i changed the <INSTALDIR> to other than root '/' dir. install passes to next step. But now i hit different error. Can someone tell me what could be the issue here.
    Info: InstController MakeStepsDeliver 2 617
    Creating Directories
    Info: InstController MakeStepsDeliver 2 626
    Creating Symbolic Links
    Info: InstController MakeStepsDeliver 2 485
    Extracting the SAP Executables
    Info: EXTRACTSAPEXE_IND_IND SyCoprocessCreate 2 485
    Creating coprocess /SapTempInst/SAPCAR -tvgf /export/home/sap/images/sap-kernel-oracle-version-4.6D-release-4.6C-sr2/UNIX/SUNOS_64/SAPEXE.SAR  ...
    Info: EXTRACTSAPEXE_IND_IND SyCoprocessCreate 2 485
    Creating coprocess /SapTempInst/SAPCAR -xvgf /export/home/sap/images/sap-kernel-oracle-version-4.6D-release-4.6C-sr2/UNIX/SUNOS_64/SAPEXE.SAR -R /sapmnt/AB4/exe  ...
    Warning: EXTRACTSAPEXE_IND_IND InternalInstallationDo 2 485
    /SapTempInst/SAPCAR returns with error 139.
    Error: EXTRACTSAPEXE_IND_IND InstallationDo 2 485
    Phase failed.
    Error: Main {} 2 485
    Installation aborted.
    Thanks

  • I'm getting an error message on Windows 8.  Missing apple application support.  Itunes will not install.  Please help!!, I'm getting an error message on Windows 8.  Missing apple application support.  Itunes will not install.  Please help!!

    I'm getting an error message on Windows 8.  Missing apple application support.  Itunes will not install.  Please help!!, I'm getting an error message on Windows 8.  Missing apple application support.  Itunes will not install.  Please help!!

    You probably need to either uninstall and reinstall itunes or to download the apple application support by itself
    you can download the itunes http://www.apple.com/itunes/ here
    then to do a complete uninstall / reinstall follow these instructions http://support.apple.com/kb/ht1923
    you could also use 7zip to extract the individual installer for apple application support from the itunes setup file http://www.7-zip.org

  • BANK-TRBK install error, please click thank you expert help to answer!

    BANK-TRBK install error, please click thank you expert help to answer!
    My SAP system is ECC6 SR3. Databases are the MAXDB 7.6
    Level for the patch: SAP_BASIS 700 has been to 15 of the
    SAP_ABA 700 has reached the 15 level PI_BASIS are 2006_1_700 BI_CONT are 703 level hit a patch
    000 CLIENT then entered my non-super-manage user DDIC landing, running SAINT upload patch, upload to start the installation after the change, but the installation process is as follows Fig error. Say happen are the ADD-ON the conflict between
    thank you
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/20092261730.jpg]
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/200922617312.jpg]
    [http://www.sapsh.com/bbsxp/UpFile/UpAttachment/2009-2/200922617323.jpg]

    > My SAP system is ECC6 SR3. Databases are the MAXDB 7.6
    You can't install BANK-TRBK on an ERP system, see
    Note 865669 - More info about installing BANK-TRBK 40 on Netweaver 2004s
    <...>
    Required release
          The following releases are required:
              - SAP Netweaver 04s
              - PI_BASIS 2005_1 or higher
              - You cannot install this on an ERP system.
    <...>
    You need to install a new "naked" Netweaver 7.0 and add it on that one.
    Markus

  • I can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi

    i can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi.

    i switched off all the security settings and all the firewalls.
    i m unable to install any of the app on the ipad
    so i saw the apple support and it said to update the older version of my ipad.
    and niether am i able to download the update nor am i able to download any app and install it in my ipad2
    i also tried to download an .ipsw file (ios5 update) from torrentz bt i am also unable to install from that as itunes rjects that file and gives an error. and also tries to delete that file. plz anyone help urgently.

  • Install Error (Please explicitly specify the ODBC database)

    I am getting the following error on installation "Please specify the ODBC database..."  I am trying to use a User machine data source and my install will not be allowed because I am getting this error
    PLEASE HELP

    .

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

  • I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    Are you using the Office for Mac 2011 version, as you need to do?  The Office for Mac 2004 is Not at all compatible with Mountain Lion, and the 2008 version has been noted to have some problems running with ML.
    Hope this helps

  • HT201442 I did this but still i am getting the same error , please help me .

    I did this but still i am getting the same error , please help me .
    <Email Edited by Host>

    Look at http://support.apple.com/kb/ts4451
     Cheers, Tom

Maybe you are looking for