Itunes crashes when:adding folder, comp crashes when ipod is connected

Im having exactly the same problem except that:
- It took more than 10 times to just install itunes without crashing or errors.
- Itunes crashes each time I attempt to import a music folder.
- My Windows XP computer freezes completely the moment my ipod video is connected, both when connected while pc is still off and while it is on.
I've read through the suggestions on the apple site and uninstalled and reinstalled countless times. If someone has some advice please share it with me.
Thanks,
Alex

You'll probably have better luck asking the question here -> Windows EightForums
iTunes isn't designed to work with Windows 8 or any beta software, so theres no suprise that it isn't working as expected.

Similar Messages

  • ITunes 11.0.2.26 freezes when adding folder to library

    iTunes 11.0.2.26 freezes when adding folder to library. This did not occur with any previous version and is taking place with several different folders. Adding files as a batch wrks fine.

    Hi DJ_Dan,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717
    Cheers,
    - Judy

  • Error when adding folder to library - Not adding files to ITunes library

    Hey all, I just got my iPod for Christmas and I've been having a lot of problems with iTunes. Sometimes when I'd add a folder it'd add all the files 3 or 4 times, and now I'm having an even bigger problem. I was trying to get all my music in one place to finally have some organization on my comp, so I set it to copy files I added, then I figured I'd delete the old folder. I have a folder that, when I try to add it, it gives me the error "Attempting to copy to the disk "C:\" failed. The file name was invalid or too long."
    It continues to go through the folder (Another few hundred songs, or almost 600 depending on if I did the top level folder) and it LOOKS like they're being added to iTunes, but they never get added to the library. If I try to update my iPod after this, the program takes all the music off my iPod. If I close and reopen, then it will update music, but NO files are added to the library. I can see that the files are being copied, and, as such, I'm not running out of disk space. These files are in there two or three times in some cases.
    So, I have two questions. Does anyone know what causes this error, and does anyone know an efficient way I can delete all the "non-detected" files?

    You'll probably have better luck asking the question here -> Windows EightForums
    iTunes isn't designed to work with Windows 8 or any beta software, so theres no suprise that it isn't working as expected.

  • Media directory deleted when adding folder in XP

    Hi everyone.
    I have used itunes for the radio, but have not used it for my music. Last night I decided to try it. I added my music folder to and it told me it had to convert .wma files to be used in iTunes. It converted maybe 40 files. The problem is, the music folder is now gone. I have lost hundreds of CDs that I have burned, interviews and workshops I have recorded and downloaded, etc. The whole media directory was wiped out. There is nothing in my recycle bin.

    Wow, what a mess! I've never heard of ituens just deleting files when they're imported (or not imported, as the case may be).
    My suspicion is that itunes moved them. Look in itunes menu > Edit Preferences > Advanced.
    Is the little checkbox to "Keep itunes Media folder" organized filled in?
    If so, itunes probably moved them. If they weren't tagged to itune's satisfaction, they probably got dumped into a folder named Unknown Artist/Unknown Album. Especially if they were WAV files, which don't have MP3 file tags.
    On XP, the default path would be
    C:\Documents and Settings\ username \My Documents\My Music\iTunes\iTunes Media
    Have a look there, unless you changed the path before importing yoru items.
    Message was edited by: Katrina S.

  • Artist/album names missing when adding folder (but not all of them)

    Yesterday I found iTunes couldn't locate the folder where I store MP3 downloads - ie. I got the dreaded '!' alongside most tracks. When I used the Add Folder command I ended up getting a duplicate of virtually every track.
    However most of the duplicate tracks were only shown with the track number on the original album plus about 12-15 characters from the title (ie. character string used as a label for the MP3 file). There was no detail of the artist or album.
    Given the large number of duplicates involved I decided to clear out the library and have just used Add Folder. Same outcome - 1/3rd of the tracks described in full; the other 2/3rds just show track number and some of the title.
    Suggestions on (a) where I'm going wrong; and (b) whether I can use contents in the Previous iTunes library folder to recreate the library would be greatly appreciated. Many thanks.

    As I've already said this question has been answered maybe no one is monitoring this topic but ... I've just worked out the reason the detail is missing is because the tracks which have limited detail are in WAV format.
    This is where I am completely lost because they have all been downloaded from the iTunes store or from Amazon as MP3 files, and I'm not aware either of the download functions comes with an add-on called "automatically convert to WAV".
    The irony is that this is quite convenient but if anyone can provide an explanation of how it is occurring then I would be interested to hear because I can't figure it out. May still trust my sanity, but not my memory!

  • Recordsets disappear from menu when adding mysql_query ("SET NAMES 'utf8'"); below the connection in php

    I hope someone can help with this. I'm trying to create a
    dynamic site using dreamweaver CS3, with php5 and mysql5 in the
    background but I'm having difficulty with recordsets disappearing
    from the server behaviour menu when tweaking the code to allow set
    characters or set names for utf8.
    For a while, I've been having a problem getting my
    dynamically generated master list pages (eg lists of jobs) to
    display international characters like an accented french e (and
    other languages) and for these to display correctly when viewed in
    phpmyadmin also. So, I've placed headers at the top of the page for
    utf8 and created the content metatag for utf8 in the page code.
    Where needed I've added ENT_QUOTES utf etc for htmlentities and
    added accept-charset utf-8 in the <form> action area.
    (one thing I haven't done in the form action area is add
    <enctype="multipart/form-data">, but I'm not sure if this
    will make any difference)
    In the backend, the innoDB database is collated and built
    using utf8_unicode_ci. I'm on a shared host -so can't directly
    access php.ini or adjust the connection settings through
    phpmyadmin. But I can write .htaccess files (currently with the
    defaultcharset set to utf8 also).
    At this point - all list pages display the correct characters
    when retrieved from the database - indicating that the headers are
    working. But - in phpmyadmin the letters are garbled, and garbled
    on return on update forms (content management). I solved this by
    adding the &#xxxx; equivalents in insert and update forms to
    display the text correctly on the list pages - but again it's not
    convenient to see all of this in phpmyadmin, as I'd like to be able
    to read it there as it should be, and to dispense with the need to
    add &#xxxx references on the insert and update forms.
    So...a bit of searching, and I read that in order for the
    international characters to display in phpmyadmin correctly, I
    needed to amend my php page code so that for all instances where I
    see the connection to the database, before the SELECT, INSERT and
    DELETE queries, I need to add either mysql_set_charset('utf8',
    $connection) or use three lines of code referencing mysql_query SET
    NAMES, SET CHARACTER SET and SET COLLATION_CONNECTION for utf8.
    I did that, and it removed all of my recordsets in the
    sidebar menu! Not too good. I'm left with a task of rebuilding
    pages now.
    So I placed the mysql_set_charset line in the connection.php
    file in the DW Connections folder below the connection there
    instead. [I didn't precede the mysql etc line with a $ sign - I
    wonder if that's the issue?]
    With this change I could use the Insert forms to add the
    international characters directly into the database and see through
    phpmyadmin that all was hunky dory. But then the problems came with
    first loads of the master list page.
    So, I can get international characters into the database now
    (which is a step in the right direction for me), using an insert
    form on the website, but I still can't get the international
    characters to display on the returned page on first loading eg on a
    list of jobs. Note that the detail pages display fine when clicking
    the master links, and when I return from the detail page back to
    the master list - the characters are ok. They just don't seem to
    display when the master page loads for the first time which is
    really perplexing me.
    I suspect that I need to add the mysql_set_charset line below
    the $connection and before the selects, inserts etc at all
    instances on the webpage, but this just removes the recordset from
    the menu, so this doesn't seem to be a good option.
    Can anyone point me in the right direction as I'm been stuck
    on this for ages. It may be something simple like adding $ in front
    of the mysql_query, but then again maybe not.
    I've tried other forums - but people seem to be content with
    viewing but not offering assistance. I don't believe that what I'm
    doing here hasn't been done before....all I want is for my pages to
    display international characters and for these to display correctly
    in phpmyadmin so that when I insert, update and delete records
    using webforms I don't have to resort to using &#xxx inserts.
    Help please!

    .oO(08Green)
    > So...a bit of searching, and I read that in order for
    the international
    >characters to display in phpmyadmin correctly, I needed
    to amend my php page
    >code so that for all instances where I see the connection
    to the database,
    >before the SELECT, INSERT and DELETE queries, I need to
    add either
    >mysql_set_charset('utf8', $connection) or use three lines
    of code referencing
    >mysql_query SET NAMES, SET CHARACTER SET and SET
    COLLATION_CONNECTION for utf8.
    Usually you only need to send a SET NAMES 'utf8' right after
    the
    connection to the DB has been established. That way all data
    that is
    transferred between the DB and your script will be handled as
    UTF-8.
    > I did that, and it removed all of my recordsets in the
    sidebar menu! Not too
    >good. I'm left with a task of rebuilding pages now.
    >
    > So I placed the mysql_set_charset line in the
    connection.php file in the DW
    >Connections folder below the connection there instead. [I
    didn't precede the
    >mysql etc line with a $ sign - I wonder if that's the
    issue?]
    I've never used mysql_set_charset().
    Here in my applications it always works like this:
    * the default charset in my InnoDB tables is ISO-8859-1, I
    only use
    UTF-8 in the columns that really need it (text data, but not
    INT or
    DATE columns)
    * SET NAMES 'utf8' at the beginning
    * all files (HTML and PHP) are encoded as UTF-8 without BOM
    * all pages delivered as UTF-8 (my pages are
    script-generated, so I use
    an appropriate header() call to define the content-type and
    encoding)
    That's it. Oh, and I don't use phpMyAdmin ...
    > With this change I could use the Insert forms to add the
    international
    >characters directly into the database and see through
    phpmyadmin that all was
    >hunky dory. But then the problems came with first loads
    of the master list
    >page.
    In the first part of your posting it sounded as if it worked
    almost
    correctly, before you tried to fix the broken phpMyAdmin
    appearance.
    Is that correct?
    > So, I can get international characters into the database
    now (which is a step
    >in the right direction for me), using an insert form on
    the website, but I
    >still can't get the international characters to display
    on the returned page on
    >first loading eg on a list of jobs.
    They did display correctly first, didn't they? So it seems
    that you
    broke your script just in order to fix some PMA problem.
    Revert that.
    Make your script work for normal input/output from/to a
    website first
    and don't worry about PMA for now.
    What do you need PMA for BTW? It may have many other issues
    as well and
    should only be used if really necessary or if you're not
    familiar with
    the command line interface. The only thing that we are using
    it is to
    get a dump from a remote DB, where I don't have shell access
    to call
    mysqldump directly (yes, I could also write a little PHP
    script for
    that, it's already somewhere on my TODO). But here on my
    local system I
    always use the MySQL command prompt if I have to directly
    work on some
    tables or to import the dump from remote.
    Anyway, if you need PMA, your might try their group or forum.
    I'm sure
    there's an FAQ as well. Maybe it's just a configuration
    issue.
    > I've tried other forums - but people seem to be content
    with viewing but not
    >offering assistance. I don't believe that what I'm doing
    here hasn't been done
    >before....all I want is for my pages to display
    international characters and
    >for these to display correctly in phpmyadmin so that when
    I insert, update and
    >delete records using webforms I don't have to resort to
    using &#xxx inserts.
    The bug here is PMA itself. ;-)
    Micha

  • Is it safe to update ios 6 (when its released) DIRECTLY FROM THE IPOD (without connecting it into itunes)

    hey everyone! i have an ipod touch 4g & IM SO EXCITED ... BT.... is it safe 2 update it 2 ios 6 DIRECTLYN FROM MY IPOD TOUCH WITHOUT PLUGGING IT IN2 ITUNES?????
    P.S: my ipod touch was jailbroken,  but i unjailbroke it by restoring it in itunes

    plz some1 answer that question

  • Yesterday i sync music to my ipod touch from iTunesn but nothing showed up in the 'recently added' folder. now today neither my computer or iTunes is recognizing the ipod. I uninstalled iTunes and reinstalled it and restart the computer

    Yesterday i synced my music to my ipod touch from iTunes. the musice went on but nothing showed up on the ipod in the 'recently added' folder. now today i went to connect it to the laptop and neither my computer or iTunes recognized the ipod. 1st a message showed up saying an ipod was detected but cuddn't be identified so reconnect and when i did nothing showed up again. i have uninstalled and reinstalled iTunes and restarted the computer a number of times but the ipod still wont show up. Can anybody help?

    Here:
    iOS: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    Does the iPod charge?
    Have you tried another cable?
    Another computer to help determine if you have an iPod or computer problem?

  • When adding an external hard drive, should you hook it up to your iMac or your Apple Extreme router?

    When adding an external hard drive, should you connect it directly to your iMac or to your Apple Extreme router?

    That depends on what you are using it for. The advantage of connecting it to the router is that you can share the drive over your home network and/or over the Internet. That can be convenient but drive access is performed at network speed - slower than when connected directly to the computer. If you need/want to share the drive, connect it to the router, otherwise connect it directly to the computer.

  • Fix for "Unknown Device" when the iPod is connected

    After a few long nights, a few headaches, hours and hours of reading, thinking and many toasted sandwiches, I finally found the problem to my iPod not loading. Putting together information I had read here and at many other sites I had a brainwave... and sure enough it worked. I figure this may be helpful to many other iPod users, so... here I am posting my solution. Note though, this wont help all users, but I know I wasn’t alone with this issue, and this just might help someone.
    I’ll list the issue I was having (this may help other people identify their issue to mine) was that the iPod failed to work on windows, and threw a fit when plugged in. Windows did too, iTunes would lock up and the iPod software failed to recognise that an iPod was connected. The iPod had worked on an older PCs before, but it failed to work on my new homebuilt PC. When I first connected the iPod it began to work, transferring and updating.. but then it unexpectedly disconnected the iPod.. and mentioned something to do with an I/O error, the iPod had to be disconnected and it also mentioned something to do with a timeout error and dataloss (or as it put it “Data has been destroyed”. That’s always a pleasant message to read). Suddenly, half the music on my iPod wouldn't play, it skipped songs until it found a song it would play... really annoying. I tried to format the iPod using the iPod software... buuut it told me that it wasn’t an iPod that was connected (Funny that... lol). After the first iPod crash, it would react differently when connected. It would once again pop up with the “Found new hardware” bubble, “Apple iPod...”, “Disk Drive...” ... then iTunes loads... then iTunes freezes... then the iPod disconnects 2 mins later, then iTunes unfreezes. THEN the next time the iPod is connected, it would say it was an “Unknown device”, and that it has “Malfunctioned”.
    It seems that, oddly enough, my iPod (I own the 30gig iPod Photo) does not like USB 2.0... I’m thinking that it must not support some of the device commands the PC is sending to it... Weird though, because on other USB 2.0 PCs it worked fine. (I got the best results out of Dell PCs...). IF USB 2.0 is disabled and slows to USB 1.1 the iPod works a charm... jumped up without an issue in the world. To disable USB 2.0, jump into BIOS as your pc is in its POST stages... this being, when the PC is first turned on and presents a message such as “Press DEL to enter setup” (or something similar), do so. Then refer to your manual on how to disable USB 2.0, if possible. Apply the changes and reboot. Be sure not to mess around with other settings, it is very easy to mess up your computer if you change settings you are not familiar with.
    Other solutions would be to run the iPod via Firewire... if you can get a cable. Run along to your local mac store and see if they have one in stock. I’ll get back on here to post if using Firewire solved the issue later.
    Perhaps a motherboard BIOS upgrade, or newer drivers could resolve the issue. This may explain to some people why their iPod stopped working overnight after working fine for so long, maybe an update of the sort was installed. Apparently my motherboard already has an update, so I’ll test that sometime and post my results as I investigate further, but as for now I’m just happy my iPod is working, even if it is taking ages to transfer (25 gigs of music takes awhile over USB 1.1 lol...).
    Also, I might add that my motherboard is an ASUS P5P800 with the Intel 865PE chipset. It could be an interesting pattern seeing which motherboards do not seem to be compatible with the iPod at USB 2.0 speeds.
    As long as this post was I hope that someone gets some use out of it. I’ll post further findings as I investigate this matter further.
    Happy iPodding!

    hi Jazza!
    the best explanation for this that i've seen is that there can be power drain problems in USB 2.0. drop below 500 mA running through the port and everything goes to pot. this may well explain why switching back to USB 1.1 sometimes works like a charm, and also explains why it's important to have the ipod plugged into a high powered USB port rather than a low power port.
    i've seen a confirmed case of a USB connection going west after a scanner got plugged into the beast in question ... periodically i see other reports along these lines, too.
    Roger Whiteley, "USB Device Not Recognized" #16, 04:18am Aug 3, 2005 CDT
    love, b

  • My iPod is connected to my computer. The iPod registers that it is connected to the computer, but iTunes and my computer do not register that my iPod is connected. I have tried to update and re-install but nothing is working. Can anyone help me out please

    So I am trying to connect my ipod to my itunes So I can transfer music from CDS I have on to my ipod...The ipod says it's connected to the computer,But itunes and my conputer do not register my ipod is connected...I have trierd to update and reintalinng it and still not working...Anyone wanna help me please

    tmplHi pranoop,
    If you are having an issue with your iPod touch not being recognized by iTunes when connected to your Windows computer, I would suggest that you troubleshoot using the steps in this article - 
    iPhone, iPad, or iPod not recognized in iTunes for Windows - Apple Support
    Thanks for using Apple Support Communities.
    Sincerely,
    Brett L 

  • Ipod disabled to connect to iTunes and it says i have to unlock my ipod to connect to itunes!! Please help i need this done ASAP

    My ipod 3rd gen. has been disabled until it says to connect to itunes. but when i connect to itunes it says you have to unlock your ipod to connect to itunes. Is there a special trick? Please Help!!!

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    But... if the Device has been Modified... this will Not necessarily work.

  • My hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does sa

    my hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does says it is an alias that is no longer present. I get error 6. I would like to get my software up and running on the laptop again please

    If you subscribed to iTunes match the songs are kept in icloud. If you didn't but you did save the actual iTunes library folder which should include the music, video, etc.  you should be able to just drag this file back to your machine in the same place and when you open iTunes it will give you a chance to identify the iTunes library folder. 
    You can test this to find out if you saved the media files or not and don't need to attach your nano to do it. 
    You are correct that once you connect the nano it will clear the existing files from it and sync it with the new iTunes library. 
    If you don't have the media files i'm not sure if/how to get them back on a windows ipod.  I have everything backed up regularly because of the horror stories I have seen & heard.

  • Final Cut Pro X crashes when adding transitions, throughout the entire program.

    I've had FCP X installed for a few weeks now, and I decided to hold back asking my question and see if anybody else is experiencing the same problems.
    I did find one matching problem on the discussions forum, but the user found a solution which I tried, and did it did not work.
    Everytime I try to add a very simple transition to my video in Final Cut Pro X, it gives me the spinning colorwheel, hesitates for a few seconds and then crashes.
      It only does it with transitions, I can add effects, adjust color, etc. but only when adding transitions does it crash.
    I've tried deleting events and original media, I've reimported using optimized media, I've tried both ways of keeping files in original locations and also copying to final cut events folder.
    The video I'm using is full 1080p mov files from a Canon 5D Mark II.
    It does it in the timeline as well as the secondary timeline.
    I've tried the solution that the previous asker did, which was copying the content to another FCP event, and it didn't work for me. Still crashes whether I try to drag the transition to my timeline, use the keyboard shortcut, or double click.
    I have a Early 2010 15 inch MBP i5 with 8gb of RAM running newest version of Snow Leopard.
    Hope I've provided enough information
    Thanks,
    -Jon

    Same Issue: Added a transition and then beach ball from **** and crash. Also lost two hours of work when it restarted and reverted to the last planned quit.
    FCPX is benched until Lion and updates. Don't have time to be a beta tester on what might end up being a hobbyists toy.
    MacPro Quad 3.0, 10G RAM.
    Mark

  • ITunes crashes when i try to restore my ipod

    So heres the deal. A friend gave me an 10gig second gen iPod which it was formatted for windows. Some of the music would not sync to the ipod. The warning I got said the software on my ipod was too old to sync all songs. When i tried to restore or update the ipod, itunes would just close.
    So, I reformatted iPod to mac os extended(journaled) updated iTunes to 7.2 (was 7.1.1) and iTunes still crashes when I try to restore or update. I get the folder and triangle.
    I have spent the better part of this weekend trying to get this fixed. I have searched the forums here and tried everything that was suggested. Somehow I need to restore it but iTunes keeps crashing.
    What else is there to do?

    Hey buddy,
    I don't know how far you got with your problem. But in the end I had so many problems with Lion and iTunes. I backed up all my stuff using time machine. Did a full format and reinstalled Lion. My problem has now gone. It'll take a day or two to fully get you back to where you are depending on applicatiosn and your data.
    Another thing I had enabled was Disk Useage on my Classic. I unchecked that in itunes too after the rebuild and I didn't have any other problems too.
    I'm not sure what the problem was, but I encountered unexpected Finder freezes and I needed a rebuild.
    Hope this is of some help. Good Luck if you haven't solved the problem yet.
    It seems as though you and I were the only one havcing this problem.

Maybe you are looking for

  • InDesign Server CS3 Debug verion

    I have recently downloaded ID Debug version and installed it, before i start using this i thought i would ask a question here. is there any difference between debug version and release version of ID? if my main intention is to evaluate to see if ID s

  • JPG files import as black boxes

    After importing a batch of JPG files into iPhoto, several thumbnails appear as black boxes. If I open the image, it appears as a faint, semi-transparent image. Info shows that the imported image was the same size as the original. This has happened on

  • Install script - checking install option and forcing exit

    Anyone know how to accomplish these two things: 1. Determine if the installation was called with a "/silent" switch on the command line 2. Force the install to stop after checking a condition (e.g. a process running) - during the "On Begin Install" s

  • Best way to revert to 10.3.8

    I'm considering installing a video capture card. The maker does not recommend using OSX 10.3.9 but supports 10.3.8. I'm wondering if anyone has any recommendations on what's the safest way to revert back one step to 10.3.8 from 10.3.9?

  • Compra Go Phone

    Hola,    Tengo planeado visitar New Yor en Diciembre y me interesaria disponer de datos en mi movil.    Estoy viendo la opcion de GoPhone 60, que brindaria 4 GB/mes.    Las dudas que me surgen son:      a) Puedo comprar a traves de Internet esta tarj