Classic synchronizing problem

My Classic is a couple of years old and has been restored about three times now. For some reason(s) it crashes and have to go thru the resoration stages for it to work properly. Now it connects to iTunes but but has trouble synchronizing when music files is been transferred. Any Classic wizards out there?

Do you have a copy of your library from before you upgraded to iTunes 9? At least in the Windows version of iTunes, the library is backed up prior to the upgrade. If you can find it, you can try uninstalling version 9, installing the previous version you were using (it's got to be the same exact version - 8.0, 8.1, 8.2). Then see if the re-installed iTunes can read the backed up library.
Once you have confirmed that the library is usable, you can try connecting the iPod again and running the restore.
You can find previous versions of iTunes on CNET by clicking HERE and scrolling down to the previous versions section.

Similar Messages

  • Hi I have an ipod classic.The problem I have is that the ipod seems to sync new music ok but I have a number of podcasts downloaded and they do not sync to the ipod.Any suggestions please ?

    Hi I Have an Ipod classic.My problem is that the Ipod seems to sync music ok but I have a number of podcasts downloaded to itunes but these don't sync to the ipod,(they have in the past,but no longer). Has anyone any suggestions please ?

    hi gary
    have you tried to sync your ipod ,when you click on the side where it shows your ipod?
    Click on where it shows your ipod name for example garys ipod,when it opens up the summary page click the sync box,bottom right,and see if that helps.
    In the summary page click on podcasts,click the box on sync podcast box (top),read before when the box opens and says are you sure you want sync podcasts.,theres a box underneath,which says automatically include ,make sure thats ticked.
    hope this may help madforit

  • Synchronized problem in JSP/Servlet, please help me.

    Hi, all
    I have many processes in one JSP page or Servlet program of my project.
    When many people visit at one time, then the project throws some SQL/DB Errors.
    I have updated it and test it many times, I think, that is a synchronized problem.
    At last I used ��synchronized (this){my JSP/Servlt SQL/DB processes}�� to synchronize
    The process. Then the errors removed.
    And now I think that too danger to use the ��synchronized (this){}�� to synchronized.
    If use it then some other problem may be growling on. Such as when one people need to use
    This service others must to wait, the process may be too slow! And when an exception throws
    from the SQL/DB or some other place, what I do? Need any advice from you.
    Sincerely
    Urey
    *** my JSP/Servlt Server is tomcat ***

    As Chuck points out, there isn't a new instance of the Servlet/JSP for each request - they are probably all calling the same instance so any state will be shared. If your Connection is stored as a member variable then you'll have problems with it already being in use if two people hit the page at the same time.
    Limited resources such as database connections should ideally be pooled anyway to ensure that you're not opening them all the time and that you can control how many are open across the entire application. Then you'd simply need to get a fresh connection out of the pool at the top of the page and make sure you put it back when you're done.
    Incidentally, although it might work, synchronizing the database access in the JSP would be a bad idea since you'd just create a queue of requests waiting to use the one Connection whereas you really need a number of Connections to deal with everyone simultaneously.
    If you need some example code for a simple JSP using a database connection pool (DataSource) just say.
    Hope this helps.

  • Classic environment problem in Tiger

    I recently installed OS 10.4 and updated to 10.4.8. I had been using 10.2.8 and I was having no trouble with OS 9 or the classic environment. Today I tried to start up OS 9 and here are the messages.
    1. install Quick Time 6.0.3 or later
    2. Classic needs to update files in System Folder
    3. There is a problem with updating the Classic specific files
    4. Classic was unable to update it's files in System folder.
    Do you have advice on how to update System Folder in OS 9 so I can open the system?
    17-inch flat panel iMac G4   Mac OS X (10.4.8)  

    Hi, Gail.
    You might want to be sure you are running Mac OS 9.2.2 for Classic. A number of interesting Classic-related problems have been noted unless one is using that specific version of Mac OS 9 for Classic under Tiger. Essentially, Tiger requires Mac OS 9.2.2 for Classic.
    If you're not using 9.2.2 for Classic you can find the relevant Mac OS 9 updates here.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • Synchronized problem - I have a real challenge!

    Hi,
    I have a real synchronized problem. Please see the code and the output below and tell me what is wrong. It seens that synchronized is not working properly.
    ---> CODE:
    public synchronized void publish(LogRecord record) {
    if (!isLoggable(record)) {
    return;
    System.out.println("AutoPushMemoryHandler in - buffer index: " + count +
    " lgth " + buffer.length +
    " ts " + System.currentTimeMillis() +
    " trd " + Thread.currentThread().getName());
    try {
    buffer[count] = record;
    catch (ArrayIndexOutOfBoundsException ex) {
    System.out.println("AutoPushMemoryHandler ArrayIndexOutOfBoundsException - buffer index: " + count +
    " lgth " + buffer.length +
    " ts: " + System.currentTimeMillis() +
    " trd " + Thread.currentThread().getName());
    return;
    count++;
    if ((record.getLevel().intValue() >= pushLevel.intValue()) ||
    (count == buffer.length)) {
    // we don't want to lost any log, so it's time to push
    push();
    System.out.println("AutoPushMemoryHandler out - buffer index: " + count +
    " lgth " + buffer.length +
    " ts " + System.currentTimeMillis() +
    " trd " + Thread.currentThread().getName());
    public synchronized void push() {
    for (int i = 0; i < count; i++) {
    LogRecord record = buffer;
    target.publish(record);
    // empty the buffer.
    System.out.println("AutoPushMemoryHandler - push() executed" +
    " trd " + Thread.currentThread().getName());
    count = 0;
    ---> OUTPUT:
    AutoPushMemoryHandler in - buffer index: 998 lgth 1000 ts 1035858336618 trd RequestProcessor[10]
    AutoPushMemoryHandler out - buffer index: 999 lgth 1000 ts 1035858336618 trd RequestProcessor[10]
    AutoPushMemoryHandler in - buffer index: 999 lgth 1000 ts 1035858336618 trd RequestProcessor[10]
    AutoPushMemoryHandler in - buffer index: 1000 lgth 1000 ts 1035858340039 trd RequestProcessor[12]
    AutoPushMemoryHandler ArrayIndexOutOfBoundsException - buffer index: 1000 lgth 1000 ts: 1035858340040 trd RequestProcessor[12]
    QUESTION:
    How is possible the thread RequestProcessor[12] enter in the method publish() if the RequestProcessor[10] did not leave the meyhod yet????? Note that publish() is synchronized!!!

    You probably have several object instances, from looking at the code it calls target.push or target.publish. Synchronized only blocks other instances of the same object from concurrently executing synchronized code. If you truly need to lock the CLASS, not the INSTANCE of class, then you need to synchronize on another object, such as {YourClass}.class

  • Synchronizing problem Appcrash

    I have a problem. As soon as i connect my iphone itunes crahses after some seconds when its time for synchronizing. If I have new pictures they would first start to download before the crashes occurs. If no new pictures, it crashes anyway.
    It worked with the old itunes version (dont remember exact version), but not with the last two newest (at least). I have tried to cleaninstall and change from XP to vista to OS7 (still on the same computer) without success.
    Please help!
    Here is the error message that I get:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: iTunes.exe
    Application Version: 9.0.3.15
    Application Timestamp: 4b590a69
    Fault Module Name: QuickTime.qts
    Fault Module Version: 7.65.17.80
    Fault Module Timestamp: 4afa620b
    Exception Code: c0000005
    Exception Offset: 007408d7
    OS Version: 6.1.7600.2.0.0.256.48
    Locale ID: 1053
    Additional Information 1: 9e27
    Additional Information 2: 9e2778096e7e1e2a2e0302fe58f3eea8
    Additional Information 3: 9e27
    Additional Information 4: 9e2778096e7e1e2a2e0302fe58f3eea8
    Im grateful for any help!
    BR
    /Me

    Got any podcasts on your phone? If so, delete the all & see if this stops the itunes crashes.

  • Blackberry Pearl 8130 Synchronizing problems with Outlook 2007 Calendar

    Have NEVER had a problem with synchronizing my calendar - now I get a message
    Unable to get an Outlook or MS Exchange record.  Lack of network access can cause this problem.  Retry and if problem persists refer to online topic How do I get technical support."
    I cannot find anything to help me fix this problem.
    Solved!
    Go to Solution.

    Hmmm...strange indeed...OK, then the next thing I can think of is for you to perform a complete start over with DTM:
    I suggest the following steps (insert plenty of reboots of your PC...not just restarts, but full power down reboots). Also, it is advised that you be logged into the PC on an account with full admin rights. Further, under Vista/Win7, use the "Run As Administrator" option for everything.
    1) Remove your device OS update package from your PC (add/remove programs)
    2) Cleanly uninstall the RIM DTM software:
    KB02206 How to perform a clean uninstall of BlackBerry Desktop Software
    3) Get a fresh download of the RIM DTM software:
    https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22
    Choose the version that is newest and (if applicable) compatible with your PIM (if you are synchornizing via USB):
    KB12268 Applications supported by BlackBerry Desktop Manager for synchronization
    4) Download (to your PC) a fresh copy of your device OS package from your carrier:
    http://na.blackberry.com/eng/support/downloads/download_sites.jsp
    5) Install DTM to your PC
    6) Install (also to your PC), the device OS package
    7) Start the organizer configuration over:
    KB17022 How to configure organizer applications for synchronization using BlackBerry Desktop Manager
    Hopefully that will get things going again.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Facing synchronizing problem

    Hi,
    i m using Adobe Dreamweaver software.  the problem is Dweaver is to synchronizing offline data with online data,
    Please Guide me how it will solve
    Nidhi Sharma

    See Dreamweaver Help | Synchronizing files

  • Classic sync problems

    Following a problem with my computer, I reinstalled iTunes and successfully copied all music back on from an external hard drive back up. However, my Classic won't sync with iTunes even though it's recognised.
    First message says the iPod is sync'd with a different library. There is an option to erase and transfer, which I've tried, but that doesn't work. It then tells me some of the tracks on the iPod aren't authorised to be played on the computer. This seems to be linked to a problem with items purchased with a different email address, but on the same computer.
    So I have some songs i've bought but can't play, and an iPod that won't sync at all. Other than that, life's perfect!
    Any advice gratefully received

    You need to authorize the computer for each iTunes Store account, which can be done from the Store menu.
    (55154)

  • 160Gb Classic Playlist Problems

    I own a 160Gb iPod classic, and it has worked fairly well for me. I enjoy being able to store all of my 20000+ music library on one device, and I have spent a substantial amount of time creating playlists that make the music more accessible. My problems lies in my iPod's opening of playlists. It simply will not open the playlist folder. My ipod freezes nearly every time I try to open the playlist folder on my iPod. The only time I am able to open my playlists is immediately after I reset my iPod, and once I do get the playlist folder to open and play a playlist, the iPod freezes when trying to back out of the playlist. I have over 20 playlists in iTunes, some are smart playlists, while others are manually made mixes. My old 60Gb 5th generation iPod never had a problem opening any of my playlists. This problem is quite frustrating since resetting my ipod any time I want to listen to a playlist, or change a playlist it quite annoying since my iPod takes nearly 5 minutes to reset. Is anybody else having this issue? Is there any way around it? Any help would be greatly appreciated.

    I"m not sure if this is any help, Steve, but . . . A new "feature" of the 160G Classic is that it calculates the number of songs in each playlist before actually displaying those lists. This doesn't happen within iTunes on our Macs, of course.
    But when I select "Playlists" on my iPod, there is a 30+ second "pause" while the device calculates the contents of my lists. This, of course, LOOKS as if the iPod is frozen. It's NOT, but I am well aware that, in lieu of a 1.0.3 update, the more playlists I add, and the more songs I add to each one, the longer it will take to move from point to point.
    IMHO, this calculation of playlist contents MUST be removed or, at least, made an option in order for our players to recapture their former speed and vigor.

  • Modify XAPP1205 with external DVI make synchronous problems

    Hi,
    I try to modify the Xilinx XAPP1205.  I try to replace one TP Generator with an external DVI signal(AES-FMC-DVI), video pipe 1 in XAPP1205.
    I can see a picture on Video out, but the synchronous is not ok (flicker on display).
    * Timing Mode in AXI4-Stream to Video Out ist: Master
    * vtg_ce is disconnected
    * resets and enables are connected
    * pipe1 vdma: s2mm_tuser / Dynamic-Master and None / Dynamic-Slave
    Please help me on this  

    Lets give it a try. 1st of all post your s/n (so I can run a check on your specific model) or check with system profiler if your machine has the NVidia Geforce 8600 M GT. Or see for yourself: http://www.chipmunk.nl/cgi-fast/applemodel.cgi
    IF SO:
    Surely, you've heard about the generic problems with this specific video chip: sooner or later most of them will fail due to chip packaging/bonding issues. If yours has not failed before, it may be doing so now because you're driving it harder with a larger external monitor attached, thus probably running the affected videochip hotter. Very useful link: http://www.xlr8yourmac.com/feedback/MacBookProvideofailure.html#novideotip , loads of other useful links on the subject therein.
    To solve this, Apple has instigated an extended warranty, so do not tread on the tail of your machine's capabilities any more. Once it will not boot (which may eventually happen), it gets really hard to run diagnostics. Have it checked by at least 1, preferably more ASPs (see link), and kindly ask them to reiterate the test 2 or 3 times. Often, the problem will not show up on the 1st try.
    I am reading increasing numbers of questions and complaints about this on the Flemish/Belgian Apple forum "Intermactivity", most users seem to be unaware of the problem (though this has been common knowledge for years), and moreover, most ASPs are reluctant to acknowledge it.
    So if your machine is one of the affected, you will really have to stand your case. Especially in Europe!

  • 80GB Ipod Classic Sync Problem.

    Hey Guys, Think I'm experiencing some similar problems to a few other people on here but just wanted to check if mine were any different. I updated my i tunes a few days ago along with downloading the new update for the classic, it seemed to install ok.
    Now this is where the problems started. When attempting to sync my music onto the ipod it gets not very far in and then i get these error messages come up:
    "Windows - Wrong Volume the wrong volume
    is in the drive please insert volume CHRIS'S
    IPOD into L:Drive"
    aswell as the itunes error message 69 coming up. Itunes either then crashes or it will allow me to attempt to eject the ipod if i do that itunes thinks it has ejected but the ipod still thinks its plugged in. If I then attempt to eject it via windows it does so but instantly resets itself as soon as it is disconnected.
    I've tried various USB ports, different IPod cables, windows system restore. Anybody got any other suggestions??

    +"Windows - Wrong Volume the wrong volume+
    +is in the drive please insert volume CHRIS'S+
    +IPOD into L:Drive"+
    +aswell as the itunes error message 69 coming up.+
    Two possibilities spring to mind, based on those messages.
    It might be worth experimenting with the following document for the 69, first:
    iTunes displays a -69 error when syncing iPod
    But if you still get the wrong volume message after the 69 is gone, it might be worth checking for a Windows drive letter confusion, as per the following document:
    Windows confuses iPod with network drive or hard drive and may keep iPod from mounting or songs may seem to disappear

  • Applie iPod Classic Connection Problems

    Hi there, me and my dad just bought 2 new iPod classics... Mines is working without any problems so far (although trying to figure out how to convert videos is ******* me off) but anyway his was working this morning before I left for work and I left it to update and download the newest artwork... Upon arriving home however his is unable to open up in iTunes and Windows Vista simply keeps trying to install drivers for the iPod everytime I connect it and ultimately fails everytime... Anyone have any ideas? Much appreciated

    Hey there Joeyleo,
    It sounds like you are unable to use any USB accessories with your iPod Classic. I would use the troubleshooting from the following article:
    iPod classic Troubleshooting Assistant
    https://www.apple.com/support/ipod/five_rs/classic/
    Here is step one to get you started, but there is additional troubleshooting within if needed:
    1. Toggle the Hold switch on and off. (Slide it to Hold, then turn it off again.)
    2. Press and hold the Menu and Center (Select) buttons simultaneously until the Apple logo appears, about 6 to 10 seconds. You may need to repeat this step.
    Tip:
    If you are having difficulty resetting your iPod, set it on a flat surface. Make sure the finger pressing the Select button is not touching any part of the click wheel. Also make sure that you are pressing the Menu button toward the outside of the click wheel, and not near the center.
    If the above steps did not work, try connecting iPod to a power adapter and plug the power adapter into an electrical outlet, or connect iPod to your computer. Make sure the computer is turned on and isn't set to go to sleep.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • New Ipod Classic syncing problems, restoring problems

    Hello,
    Just got my 80gb Ipod Classic yesterday, and have had syncing problems, and now Itunes does not recognize it at all.
    I'm using the latest version of Itunes (7.6.2.9)
    Ipod Firmware 1.1.2 (or whatever the newest is)
    Windows XP Pro
    I'm a long-time user of a 5g 30gb Ipod and never have had issues like this. I am syncing to the same Itunes library as my old Ipod. Connecting my new Ipod Classic, I updated the firmware, and tried to sync. Halfway through the sync, I got an error. I disconnected the ipod and reset it. I tried syncing again, and again it would hang at some point, had to disconnect, and then it said my ipod had no music, but with 60gb free only. So obviously a database problem on the ipod and some mp3 files that my new ipod classic didn't like (though my old 5g ipod has no problem with this library).
    Next, I connected and did a Restore.
    I removed the culprit mp3 files from Itunes Library, attempted to sync again. Again, it would freeze at some point during sync. Had to disconnect Ipod while Itunes was frozen. Again, Ipod says has no music but with only about 60gb free.
    So Ipod is corrupted again. The problem is when I connect it to my PC, Itunes no longer recognizes it, so I can't do a Restore. What do I do?

    Just wanted to post my results, for future users benefit:
    Putting my Ipod into Disk Mode, connected to computer, Itunes recognized it, performed a Restore.
    Still had syncing/freezing issues.
    Decided that my Itunes library database was corrupted. Went into My Documents > My Music, and deleted the Itunes Folder, except for the containing Artwork Folder.
    Have been rebuilding my Library from scratch since, and have had no syncing problems yet again.
    Only problem is that in the outermost Podcast menu, it is always empty. The only conveninent way to access my Podcasts is to make a playlist and put them all in it.

  • Classic Registration Problems

    Everytime I plug my new 80G Classic into my MacBook, iTunes wants to go through the registration steps. 5 times and counting.... It's getting annoying. The only fix I've found on the forum is to delete a prefs file on the iPod, but this seems to be for Windows only - as there's no pref file to be found on the unit itself.
    Any ideas?

    I was having the exact same problem with my brand new Classic over the weekend. When registering, I definitely was selecting OK to complete the transaction each time. Once registered, everything seemed fine and I was able to set my sync preferences and sync all my playlists. But when I would re-connect I would be prompted to register again. After about 5 such attempts (including removing the hidden itunesprefs file) I gave up and selected "Never Register" and registered the S/N directly with Apple.
    So far I seem to be able to re-sync just fine with no more registration prompts. +{knocks on wood}+

Maybe you are looking for

  • Steps to upgrade OBIA source EBS 11 to R12

    Hi, We have a specific requirement that our EBS source got upgraded from 11.5.10 to R12. Earlier OBIA Financial,HR Analytics is running successfully. Now we need to map it to R12 source. Can any one had done this already please suggest required steps

  • Error Viewing Fillable PDF Forms in Adobe Reader on iPhone/iPad

    I created a fillable form on a Windows computer in Adobe Acrobat XI Pro, but when I open the document from an email attachment in the Adobe Reader app on my iPhone or iPad the top have of the form is blacked out (literally the top half of the documen

  • Start x11vnc -- X uses 100% cpu load

    Hi. I switched to arch64 and today I first used x11vnc and it is extremly slow. First I thought about the proxied connection but after looking into top I found X is using 100% cpu load. With arch32 everything worked as normal. Don't know whats the pr

  • Detach all master item from a page

    hi i developp an extension for indesign with CS extension builder 2 and flashbuilder 4.6 and i don't find the Page panel menu command  "detach all master item" in the page method... how detach all the master item of a page ? thanks Simon

  • SNMP traps from HP NNMi - SCOM

    Hi, We wan't to forward snmp traps from hp nnmi to scom. I have found a description of a solution for this here: http://social.technet.microsoft.com/Forums/systemcenter/en-US/19c29988-dfe8-4918-b0d5-f3124bcfea95/operations-manager-and-hewlett-packard