Error (-5000)

I am trying to update my iphone 4 with the 5.0.1 update.  When itunes is backing up my phone, it stops and says the an error (-5000) has occurred and that if I continue I will lose all the info in my phone.  Help!  How can I fix the error and update my phone.  Thanks!

I have exactly the same information - bypassed all firewall, spyware etc. Even reset the registry with the help of microsoft tech support to ensure it wasn't an XP issue.
If you get it figure out - let me know and vice versa!
  Windows XP  

Similar Messages

  • I am getting an "error -5000" message when I try to backup my iphone 4 to itunes.  Any ideas what this means?

    i am getting an "error -5000" message when I try to backup my iphone 4 to itunes.  Any ideas what this means?

    Take a look at this link, http://support.apple.com/kb/ts1424

  • When I try to save a doc to my server I sometimes get this: The document could not be saved. There was a Macintosh system error (-5000). What does it mean?

    When I try to save a doc to my server I sometimes get this: The document could not be saved. There was a Macintosh system error (-5000). What does it mean?

    What kind of file are you saving, and what sort of clientserver setup do you have?
    If you're using MS Office, it doesn't play nice with OS X Server, particularly with network homes.

  • My iPhone 4 will not complete a back up. Error - 5000 comes up

    Error 5000 appears after "preaparing phone for back up" completes. "Continuing will result in the loss of all contents of this phone" is the message. Phone will not complete a synch and iTunes often goes into "Not responding". I have repaired iTunes by downloading the software from Apple's website. No improvement.
    Can anybody offer a solution?

    This is a bad situation. Your iPhone is in a state which cannot be backed up, and the Restore will return iPhone to factory specs erasing it. You need to Restore your iPhone to get it working again. If you were experiencing problems before, maybe your iPhone is damaged. If still faulty, and you have Warranty or AppleCare take iPhone to Apple for evaluation. If no coverage and still faulty it may be time for new phone.

  • Can't open site in GoLive CS2, error (-5000) help!

    I've created 7 different sites with GoLive CS2 over the years and they are all files on my Mac laptop.  I went to open one that I haven't had to change in a while and I can't, I just get a window with this, "Could not open Document, OS Error (-5000)" So is this a GoLive error or something with my Mac OSX system?  I can't open any completed GoLive CS2 sites with Dreamweaver, only page by page and then I can't upload the changes since my site FTP info is in the GoLive version websites.  Of the 7 sites, I can only open 3.
    Help please...
    Dee Dee

    TangledRibbon wrote:
    ...I can't upload the changes since my site FTP info is in the GoLive version...
    FTP user account info is portable. Find out what the user name and password is for the accounts and enter them in Dreamweaver.
    You do not mention what version of OS X you are using but it is highly likely that a user of a newer Mac is going to have troubles with GoLive. It was written for older Macs.

  • Songs are greyed out. Error -5000

    My songs will not sync to my iPhone. They are still located in my iTunes and play just fine, however they also show up in my phone, only they are "greyed out" and I cannot play them from the device. When I sync the iPhone, I always get an "Unknown Error -5000" about half way through and then it basically stops the entire sync. I have tried rebooting both the computer and iPhone and also I have restored the iPhone to a new phone, still nothing seems to be getting this to work and nothing on google says anything about this error.

    I plugged in my device (iPhone 4) and went to file, next go to the devices section and click transfer purchases from device section (it will have your devices name) then wait patiently. All my songs went from grey to black and were synced onto my phone. I really hoped this helped and didn't just magically work for me!
    ~gabi

  • Problem sync with iphone could not transfer music because of unknown error -5000

    windows Itunes will not sync my music with Iphone 4s because of unknown error (-5000)    ?????

    Are you using the latest version of iTunes? 
     See if there is a solution in the PDF user manual:  iPod Manuals 

  • I am trying to upgrade my iPhone 4 to the latest iOS via iTunes, but I keep getting a message saying that an error [-5000] occurred and continuing will delete all content on my iPhone. What's the solution?

    I am trying to upgrade my iPhone 4 to the latest iOS via iTunes, but I keep getting a message saying that an error [-5000] occurred and continuing will delete all content on my iPhone. What's the solution?

    okay I've done everything regarding the transfer process (via file>transfer purchases) and syncing, so everything on my iPhone device seems to have been transferred to my iMac... however, I still get that message ("There are purchased items on the iPhone..."), trying to upgrade the iOS Have tried several times the same process of hitting transfer purchases via file, but nothing seems to make that message go away! Would have been nice to know which files I actually do need to transfer, which I don't get any info on of course...
    Starting to get really annoying this thing.. Any smart suggestions what's going on?

  • Internal Error -5000 when creating AP Credit Memo

    hi all, i've some problem when trying to create AP Credit Memo  using VB.Net via SAP B1 SDK.
    My application keep throwing error "Internal Error -5000 Occured"
    My friend suggest me to create AP Credit Memo using SAP B1 application first, then try using the same parameter that i inputed into the system to create AP Credit Memo using SDK, he said it ussualy works.
    I already try my friend suggestion to create AP Memo using SAP B1 Screen and it
    was worked.
    The information that i input when creating AP Memo via SAP screen are :
    - Vendor
    - Item/Service Type ="Service"
    - Item/Service Description
    - G/L Account
    - Tax Code ="VNC"
    - WTaxLiable =No
    But when I try to create AP Memo using VB.NET using SAP SDK, it still
    throwing the same exception as before (Internal Error -5000 Occured) even
    I passing the same parameter.
    Bellow is my code :
    For the master :
                            vAPmemo.DocObjectCode =
    SAPbobsCOM.BoObjectTypes.oPurchaseCreditNotes
                            vAPmemo.DocType =
    SAPbobsCOM.BoDocumentTypes.dDocument_Service
                            vAPmemo.CardCode = "V001" ' txtCcode.Text
                            vAPmemo.DocDate = Now 'DatePosting.Value
                            vAPmemo.DocDueDate = Now ' DateDue.Value
                            vAPmemo.DocCurrency = "IDR"
                            vAPmemo.Comments = "Based On Tagihan  No. " &
    dtTable.Rows(j)("JurnalMemo").ToString.Trim & "."
    For The Detail :
                       vAPmemo.Lines.AccountCode =
    dtTable.Rows(j)("AccountCode").ToString.Trim
                            vAPmemo.Lines.BaseType = 18 'basetype = 19 (a/p
    credit memo)
                            vAPmemo.Lines.ItemDescription = "Test"
                            vAPmemo.Lines.WTLiable = SAPbobsCOM.BoYesNoEnum.tNO
                            vAPmemo.Lines.TaxCode = "VNC"
    vAPmemo.RowTotalFC= CDbl(dtTable.Rows(j)("Credit").ToString.Trim)
    Is there anything wrong in my code ?
    or missing parameter?
    Regards,
    Herfin
    Edited by: Herfin Jodana on Aug 28, 2008 3:29 AM
    Edited by: Herfin Jodana on Aug 28, 2008 3:30 AM

    HI,
    if you want ot create a A/P Credit memo, you do not have to give the basetype/BaseLine/BaseEntry fields between document lines.
    the correct is:
    vAPmemo.Lines.AccountCode =
    dtTable.Rows(j)("AccountCode").ToString.Trim
    vAPmemo.Lines.ItemDescription = "Test"
    vAPmemo.Lines.WTLiable = SAPbobsCOM.BoYesNoEnum.tNO
    vAPmemo.Lines.TaxCode = "VNC"
    vAPmemo.RowTotalFC= CDbl(dtTable.Rows(j)("Credit").ToString.Trim)
    if you want to create a A/P Credit memo based on Existing Invoice, you must have to provide the basetype/BaseLine/BaseEntry  which means:
    vAPmemo.Lines.BaseType = 18 'APInvoice
    vAPmemo.Lines.BaseEntry = 'Refrence docentry for A/P Invoice
    vAPmemo.Lines.BaseLine = 'reference to A/P Invoice linenumber
    Try this, it is now working.
    Best Regards,
    J.

  • Error -5000 and: Error when loading the transcode setting

    For a couple of days I've been trying to export my project on a DVD, but on the half way of the transcoding it comes the Error -5000, and then there is such a message, something about the navigation, can't be found etc... I work on a mac OS X, using Encore CS3, all my data I've got on my external harddisk, with space of 80 GB.
    Besides, when I'm trying to export my project on a blu-ray disc, there comes a message: Error when loading the transcode setting! I know that there are only two codecs there - H.264 and MPEG-2, and there are only MPEG-2 movie files there, so I set the MPEG-2 codec. And there comes such a thing! Having set the H.264, there comes the same. What can it be?
    And the last one is the copy protection. I know that it can be activated, with CGMS and Macrovision, only if the CSS option is set on "permit no copies". So I do, and then there comes a message - "for these settings there is no copy protection provided". So what now to do?

    My flash drive PNY comes up with error -5000 and i do not know what to do can you help me with this problems

  • Download error -5000

    I purchased music but receive repeated download errors (-5000).  I've checked and updated all "permissions" but still cannot download the music for which I've already been charged!  Help please!

    form reading your post it sounds like your issue is with itunes rather than appletv?
    if so, then it might be better to post your issue in the itunes forum.

  • Internal Error (-5000)

    Hi,
    I am getting the error message "Internal Error (-5000)"  when I select the BP in Incoming Payment.  Can anybody help me to resolve this issue ?

    hi,
    try to check the ff. note at sap Portal
         1227605,      1234446,      1077994
    hope it helps.
    bst regards
    fidel

  • Permissions ( error -5000 )

    Im working on an xserve with several groups and users and today while organizing group privilges I ran into a snag, after propigating promissions on the main hard drive. What happend was that the group which I gave permissions to the hard drive no one in that group is able to log on to the server at all. Error -5000, if anyone knows how to help please do.
    - Marcus

    Some comments:
    I don't think a re-install is indicated. Yet.
    I think it is normal for Disk Utility to freeze the system while it verifies the disk. It has always been that way on my machines ever since you could run the verify disk stuff from your hard disk.
    Error -5000 means "accessDenied", "Incorrect access for this file/folder".
    As I understand it, repairing permissions does not repair user Files/Folders, only those of the system. You could still have a permissions-related problem, I guess.
    charlie

  • Error -5000 and -3253 while downloading

    i just bought the Beatles box set
    it is composed of songs, videos and LPs
    on most of the LP (read here most not all) i have the error -5000
    and on 2 videos i have error -3253
    from what i have understood error -5000 if a problem with access permissions on my computer
    if so why some LP have been correctly downloaded and others don't?
    and what is error -3253?

    I just spent over an hour on the phone and working through Remote Advisor w/an Apple Technician (AT) going through a plethora of troubleshooting items - all to no avail.
    The AT did provide me with his/her specific contact information and promised to get back to me with an update within 24-hours.  Although there is no resolution at this time, I do at least have the comfort knowing that this issue has indeed been forwarded to the Engineering team for them to review and address.
    I just hope that this is resolved sooner rather than later.
    And as an FYI I did suggest that they check out the Community Forums to get better understanding that this is not an issue specific to me alone but to a much broader group.

  • Error -5000 will result in loss of all content?

    I'm trying to upgrade my iPad to the iOS5.  I get an error -5000 that says if I continue it will result in loss of all content. 
    How do I get around this?

    Back up your iPad first, then upgrade. You can restore all your apps and data after it updates!

Maybe you are looking for

  • Is my iphone dead?

    Hello there, i was wondering if anybody on here could help. About a week ago my iphone started being weird, at first it would say this accessory is not compatible with iphone, when there was nothing connected to it. Then it started switching home scr

  • Can not send e-mail on Mail 2.1

    I can receive all mail but when I try to send I get the message: This message could not be delivered and will reamin in your Outbox until it can be delivered. The sender address [email protected] was rejected by the server. I have just migrated to th

  • Javax.servlet.ServletException: Illegal to flush within a custom tag

    Hi , I am developing a sample application for JSF , Tiles and Spring when i uses JSF with tiles i am getting the error javax.servlet.ServletException: Illegal to flush within a custom tag      org.apache.jasper.runtime.PageContextImpl.doHandlePageExc

  • Micro SD / transflash probems

    I haven't been able to connect my new MacBook to my Nokia phone or its card alone (using external card reader). When I try to mount the card, nothing happens. If I open "/Volumes", though, there's the name of my card, and shows as read-only. Inside i

  • SQL Developer Exchange Upgrade?

    Can the APEX installation used to provide the SQL Developer Exchange be upgraded to APEX 3.1 and the various reports redeveloped as Interactive Reports? This would give Exchange users the ability to customise the screens to their requirements, partic