TS3694 What kind of error is (-1)?

I recently found my old iPod Touch and I've been trying to update it to version 4.2 and an "unknown error" keeps occuring (-1).
Does anyone have any information on how or what to do to fix this error. I've already updated my Mac and iTunes and the same error
continues to occur.

Error (-1)
Try on another computer
Also see:
iOS: If you can't back up or restore from a backup in iTunes
Then see:
-1 error
-1 error too
If still problem  that means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
Apple Retail Store - Genius Bar

Similar Messages

  • 'what kind of error 'plzzz help

    hi all
    plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
    *& Report  ZNBS_FI_FS10N
    REPORT  ZPRAC_FI_VENDORSTATEMENT.
    Report Title          : Display Line item balances for VENDORs with opening balances
    Functional Consultant : Mr ShreeHari
    ABAPER                : Sanjay K, NBS
    TYPE-POOLS slis.
    DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
               ls_event               TYPE slis_alv_event,
               repid                  LIKE sy-repid.
    DATA   :   b_layout               TYPE slis_layout_alv.
    DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
    DATA   :   lt_list_commentary     TYPE slis_t_listheader,
               l_logo                 TYPE w3_qvalue.
    TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
    SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
    SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
    SELECTION-SCREEN END OF BLOCK b1.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           dmbtr LIKE BSAK-dmbtr,
           wrbtr LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           ltext LIKE t003t-ltext,
           END OF itab.
    DATA TEXT(60). " LIKE t003t-ltext.
    DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF final OCCURS 0,
            belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           debit LIKE BSAK-dmbtr,
           credit LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           balance LIKE BSAK-dmbtr,
           ltext LIKE t003t-ltext,
           END OF final.
      DATA : BEGIN OF output OCCURS 0,
             belnr LIKE bsis-belnr,
             bukrs LIKE bsis-bukrs,
             gjahr LIKE bsis-gjahr,
             blart LIKE bkpf-blart,
             bldat LIKE bkpf-bldat,
             budat LIKE bkpf-budat,
             LIFNR LIKE LFA1-LIFNR,
             ddebit LIKE BSAK-dmbtr,
             ccredit LIKE BSAK-wrbtr,
             shkzg LIKE BSAK-shkzg,
             balance LIKE BSAK-dmbtr,
             ltext LIKE t003t-ltext,
             hkont LIKE bsis-hkont,
             bschl LIKE bsis-bschl,
             TXT50 LIKE SKAT-TXT50,
             END OF output.
    ********FOR OPENING BALANCE.
    DATA : BEGIN OF open OCCURS 0,
           wrbtr LIKE BSAK-wrbtr,
           dmbtr LIKE BSAK-dmbtr,
           bukrs LIKE BSAK-bukrs,
           shkzg LIKE BSAK-shkzg,
           END OF open.
    DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF bal OCCURS 0,
          dbal LIKE bsis-wrbtr,
          cbal LIKE bsis-dmbtr,
          shkzg LIKE bsis-shkzg,
          END OF bal.
    DATA date TYPE sy-datum.
    MOVE pbudat-low TO date.
    date = date - 1.
    DATA: BEGIN OF balance OCCURS 0,
          debit LIKE bsis-wrbtr,
          credit LIKE bsis-dmbtr,
          total LIKE bsis-dmbtr,
          END OF balance.
    DATA : BEGIN OF line OCCURS 0,
           belnr LIKE bsis-belnr,
           dmbtr LIKE bsis-dmbtr,
           wrbtr LIKE bsis-wrbtr,
           hkont LIKE bsis-hkont,
           gjahr LIKE bsis-gjahr,
           bukrs LIKE bsis-bukrs,
           shkzg LIKE bsis-shkzg,
           budat LIKE bsis-budat,
           blart LIKE bsis-blart,
           bschl LIKE bsis-bschl,
           TXT50 like skat-txt50,
           END OF line.
    TOP-OF-PAGE.
      PERFORM top_of_page.
    START-OF-SELECTION.
    *perform integrate.
      PERFORM fetch.
      PERFORM build_catalog.
      PERFORM layout.
    END-OF-SELECTION.
      PERFORM display .
    *&      Form  Fetch
          text
    -->  p1        text
    <--  p2        text
    FORM fetch .
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
        COLLECT open.
      ENDSELECT.
      SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
        COLLECT clear.
      ENDSELECT.
      LOOP AT open.
        MOVE : open-dmbtr TO bal-dbal,
               open-wrbtr TO bal-cbal,
               open-shkzg TO bal-shkzg.
        IF open-shkzg = 'H'.
          open-dmbtr = open-dmbtr * -1.
          open-wrbtr = open-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      LOOP AT clear.
        MOVE : clear-dmbtr TO bal-dbal,
               clear-wrbtr TO bal-cbal,
               clear-shkzg TO bal-shkzg.
        IF clear-shkzg = 'H'.
          clear-dmbtr = clear-dmbtr * -1.
          clear-wrbtr = clear-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      CLEAR bal.
      LOOP AT bal.
        IF bal-shkzg = 'H'.
          MOVE  : bal-dbal TO balance-debit.
          CLEAR bal-dbal.
        ELSE.
          MOVE        bal-cbal TO balance-credit.
          CLEAR bal-cbal.
        ENDIF.
        COLLECT balance.
        CLEAR balance.
      ENDLOOP.
    ********FOR LINE ITEMS
      SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
        SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
        pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
          IF itab-shkzg = 'H'.
            itab-dmbtr = itab-dmbtr * -1.
            itab-wrbtr = itab-wrbtr * -1.
          ENDIF.
          SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
            APPEND itab.
          ENDSELECT.
        ENDSELECT.
      ENDSELECT.
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * -1.
          itab-wrbtr = itab-wrbtr * -1.
        ENDIF.
        SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
          APPEND itab.
        ENDSELECT.
      ENDSELECT.
      DELETE itab WHERE LIFNR NOT IN pLIFNR.
    <b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
    error at delete statement.
    its urgent.
    thanks all in advance.
    appropriate reward will b given.

    hi gaurav,
    u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
    so do like this,
    create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
    delete wa_itab from itab where condition.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • What kinds of error iCloud symbol with ! inside?

    added song purcahsed outside of iTunes to library. iCloud symbol shows cloud with ! inside. what kind of errors produce this symbol? how to correct?

    See http://support.apple.com/kb/ts4124.

  • TS3694 what is itunes error 0xe8000084

    what is itunes error 0xe8000084

    Type in "error 0xe8000084" without the quotes into the search box in the upper right, then press Search.  Or follow the links in the panel to the right under "More Like This".

  • TS3694 What is the error 10009

    What is the error 10009 in iphone

    What were you doing when you receive that error?
    Is error on iPhone?
    On computer?

  • TS3694 What is the error 3194 while restoring your firmware ?

    What is the error 3194 while restoring your firmware ?

    Don't panic and don't worry. Your problem is basic. This error happens when your downgrade or upgrade your iDevice once apple stop signing the firmware.
    DON'T use Tinyumbrella or others jailbreak utilities.
    Steps:
    1. Goto      Windows/System32/Drivers/etc    
    2. Open "Hosts" file with Notepad.
    3. Delete   gs.apple.com (everything - all traces) then save it.
    3A. And also delete the Tinyumbrella notepad file.
    4. Plug-in your iDevice to PC, start iTunes and  Restore.
    All the best!

  • TS3694 what is unknown error 3194

    Whilst trying to restore my 3GS the message 'unknown error 3194 occurred'. What does this mean?

    It sounds like security software may be interferring.  I would try to disable or uninstall any 3rd party security software installed.
    http://support.apple.com/kb/TS3694#error3194
    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • TS3694 what is the error 1015

    when we update iphone one time error 14 and next time 1015
    please assist and what is the problem

    http://support.apple.com/kb/TS3694#error1015

  • What kind of error it could be?

    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\2z7\StrokeFill\build\classes
    C:\Documents and Settings\2z7\StrokeFill\src\ParseFile.java:82: incompatible types
    found   : int[]
    required: int
                       return  xy;
    1 error
    BUILD FAILED (total time: 0 seconds)
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.ListIterator;
    import java.util.regex.*;
    import java.util.StringTokenizer;
    public class ParseFile
        private String Filename="newt3.newtmal.ps";
        private int x1, y1, x2, y2; // to plot lines from (x1,y1) to (x2,y2)
        private int xy[]= new int[205];
         public  int setxy()
              // parse a file to read line by line;           
                    File file = new File(Filename);
                           try
                                   BufferedReader br = new
                                            BufferedReader(new FileReader(Filename));
                                    String line;
                                    String s1 = "0.5 setlinewidth 0.0 setgray";
                                    String s2 = "stroke clear";
                                    String s3 = "closepath fill";
                                    String[] parts;
                                     while ((line = br.readLine()) != null )
                                        if (line.equals(s1))
                                                List<Integer> xList = new ArrayList<Integer>();
                                                List<Integer> yList = new ArrayList<Integer>();
                                                while ((line = br.readLine()) != null && !line.equals(s2))
                                                   parts = line.split(" ");
                                                    xList.add(Integer.parseInt(parts[0]));
                                                    yList.add(Integer.parseInt(parts[1]));
                                                Integer[] x = xList.toArray(new Integer[xList.size()]);
                                                Integer[] y = yList.toArray(new Integer[yList.size()]);
                                                // Plotting here using x and y arrays
                                                int m = x.length;
                                                for (int i = 0; i<m-1;i++)
                                                   xy[i]   = x.intValue();
    xy[i+m] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    // return xy;
    else if (line.split(" ").length == 8)
    List<Integer> xList = new ArrayList<Integer>();
    List<Integer> yList = new ArrayList<Integer>();
    while ((line = br.readLine()) != null && !line.equals(s2))
    parts = line.split(" ");
    xList.add(Integer.parseInt(parts[0]));
    yList.add(Integer.parseInt(parts[1]));
    Integer[] x = xList.toArray(new Integer[xList.size()]);
    Integer[] y = yList.toArray(new Integer[yList.size()]);
    // Plotting here using x and y arrays
    int m = x.length;
    xy[0] = Integer.parseInt(parts[5]);
    xy[m+1] = Integer.parseInt(parts[6]);
    for (int i = 0; i<m-1;i++)
    xy[i+1] = x[i].intValue();
    xy[i+m+1] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    catch (Exception exception) {
    exception.printStackTrace();
    return xy;

    of course it's wrong, how correct?Please just answer my question!!!
    Again: do you know the difference between an array of int's and a single int?
    And I know you copied the compiler error on the forum, but did you read it? If so, what did you not understand about it?

  • "Avoid reassigning parameters such as 'myString'" What kind of error is it?

    This is the method where the compiler gives me an error that I'm not able to understand...
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
         }What's the problem? o_O
    Message was edited by:
    Lukyan

    Are you sure? I try to put the whole class (it's not huge):
    public class SearchResultFactory {
         private String[] header;
         private String          stringToParse;
         private Iterator     it;
         private IIssueRepositoryLocation location;
         public SearchResultFactory(Bugzilla220RepositorySession session) {
            super();
            location = session.getLocation();
         public void parse(InputStream stream, ISearchResultCollector sc) throws IOException {
              CSVParser parser = new CSVParser();
              BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
              int i = 0;
              int rowLength = 0;
              // read first row (column description) and check length
              stringToParse = reader.readLine();
              if (stringToParse != null) {
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        it.next();
                        rowLength++;
                   header = new String[rowLength];
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        header[i] = removeQuotes((String) it.next());
                        i++;
                   String[] row;
                   stringToParse = reader.readLine();
                   while (stringToParse != null) {
                        it = parser.parse(stringToParse);
                        row = new String[rowLength];
                        i = 0;
                        while (it.hasNext()) {
                             row[i] = removeQuotes((String) it.next());
                             i++;
                        reportRow(sc, row);
                        stringToParse = reader.readLine();
         private void reportRow(ISearchResultCollector sc, String[] row) {
              BasicBugReport bug = new BasicBugReport();          
              bug.setId(Integer.parseInt(row[0]));
              bug.setRepositoryLocation(location);
              for (int i = 1; i < row.length; i++) {
                   IIssueAttributeDescriptor descr = BugzillaAttributes.getAttributeDescriptor(header);
                   if (descr != null && descr.getValueType() == TextAttribute.class) {
                        TextAttribute ta = new TextAttribute(row[i]);
                        bug.setAttribute(descr, ta);
                   if (descr != null && descr.getValueType() == UserAttribute.class) {
                        UserAttribute ua = new UserAttribute(new User(row[i], row[i]));
                        bug.setAttribute(descr, ua);
    if (descr == null) {
    IIssueFolder folder = getFolder(header[i], row[i]);
    if (folder != null) {
    bug.addParentIssueFolder(folder);
    bug.setState(ISyncState.PARTLY_SYNCHRONIZED);
              sc.reportResult(bug);
    private IIssueFolder getFolder(String ident, String name) {
    if (ident.equals("component")) {
    return new Component(name);
    if (ident.equals("product")) {
    return new Product(name);
    if (ident.equals("version")) {
    return new Version(name);
    if (ident.equals("target_milestone")) {
    return new TargetMilestone(name);
    return null;
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
    However the compiler gives me the error on the method "removeQuotes"... so?

  • TS3694 what is 1015 error when updating an iPhone?

    what does error 1015 means? I'm updating my iphone when this error came up. please help. thanks

    here you go:  http://lmgtfy.com/?q=iphone+error+1015

  • TS3694 what is the error code 2003 when trying to restore an ipod touch

    Im trying to restore a first generation ipod touch and it keeps coming up error code 2003.  Ineed help to figure out to get the corrected.

    Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on)
    If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you are using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that does not resolve the issue, try the USB issue-resolution steps and articles listed for Error 1604 above. If the issue persists, it may be related to conflicting security software. If the errors persist on another computer and known-good USB cable, the device may need service.
    http://support.apple.com/kb/TS3694#error2001

  • TS3694 what is this error 3194

    after restore it said "the Iphone could not be restored. An unknow error occured 3194" What is this and what do I do abt it? My phone does not work. Pls help me.Thanks.

    http://lmgtfy.com/?q=iPhone+error+code+3194

  • TS3694 What is unknown error 3 on iPhone 4S?

    Im tring to restore an iPhone 4s and I keep getting ERROR 3. Does anyone have an idea of what is causing this?

    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the error message when you update or restore, contact Apple support.
    Error 1015 might happen after making unauthorized modifications to iOS, also called "jailbreaking."

  • TS3694 What is iTunes error -42110 ?

    Each time my computer launches iTunes (to sync with my iPhone 4S), a message appear mentionning error code -42110, but no solution or explanation provided... So, what is error code -42110 on iTunes (for Windows)?

    Try the following user tip:
    iTunes for Windows 11.0.2.25 and 11.0.2.26: "Unknown error -42110" messages when launching iTunes

Maybe you are looking for