Hi, i'm having problem with syncing my Ipod. Please help me.

I tried to transfer apps from my ipod to my computer, it said there is not enough space in my ipod, it really took about 500MB of space in my Ipod for nothing! how can fix that? and is Itunes always keep it's downloaded file (like Ipod Firmware update) in my computer's C drive?

I am a little confused.  In some places your say there is not enough space on your iPod and other times you indicate that there is not enough space on your C drive.  How much available space do you have on your iPod?  How much is taken up by "other".  With you iPod connected to the computer the Summary page of iTunes for your iPod will breakdown the usage.  How much free space is available on your C drive?

Similar Messages

  • Firefox is having problems with "Southwest Airlines website" Please help soon

    Whenever I go on Southwest Airline website, it does not work. I am having this problem since last month. Please help on this as soon as you can.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Other things that need your attention:
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    * Shockwave Flash 10.0 r22
    * Java Plug-in 1.6.0_07 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://kb.mozillazine.org/Flash
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://kb.mozillazine.org/Java
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Having problems with syncing my iPod to my mac and trying to purchase a song but iTunes keeps saying "can't connect to server??

    just got a new mac- been using PC. Having problems syncing my Ipod to my mac and when i try and purchase a song, itunes says "network connections timed out"-  what am I doing wrong??

    Try a hard reset by pressing the Home button and Wake / Sleep button at the same time, keep them both pressed until the Apple Logo appears on the screen.
    This does not lose any data on your iPad.

  • Having Problem with stuttering video. Please help!

    I haven't had a problem with viewing video online with my laptop until a few days ago. Now, all it will do is start to play, then freeze, play for a few seconds, then freeze, etc. etc. If I am on Hulu and pause the video to allow it to buffer, it will go good for a few minutes then start the same thing over again. I have done the same thing on CBS.com, but the results haven't been as good as on Hulu. I have noticed that it is considerably worse when the commercials start. I tried uninstalling my Flashplayer several times to no avail, and I even uninstalled my Antivirus and reinstalled that thinking that might be the problem. Tried right clicking on the player when it's in use and disableing the hardware accelerator in the settings, but that didn't help. I am about ready to pull my hair out!
    OS is Windows Vista Home Premium Service Pack 2
    Using Mozilla FireFox version3.6.8 and Internet Explorer 8 version 8.0.6001.18928
    Have Adobe Flashplayer version 10.1.53.64
    antivirus is Avast! Free version 5.0.594
    If there is any other info needed, let me know!

    is a video card problem for acne

  • Having problem with switch statement..please help

    here my question :
    GUI-based Pay Calculator
    A company pays its employees as executives (who receive a fixed weekly salary) and hourly workers (who receive a fixed hourly salary for the first 40 hours they work in a week, and 1.5 times their hourly wage for overtime worked).
    Each category of employee has its own paycode :
    ?     Paycode 1 for executives
    ?     Paycode 2 for hourly workers
    Write a GUI-based application to compute the weekly pay for each employee. Use switch to compute each employee?s pay based on that employee?s paycode.
    Use CardLayout layout manager to display appropriate GUI components. Obtain the employee name, employee paycode and other necessary facts from the user to calculate the employee?s pay based on the employee paycode:
    ?     For paycode 1, obtain the weekly salary.
    ?     For paycode 2, obtain the hourly salary and the number of hours worked.
    You may obtain other information which you think is necessary from the user.
    Use suitable classes for the GUI elements. (You can use javax.swing package or java.awt package for the GUI elements.)
    here my code so far :
    import java.awt.;*
    import java.awt.event.;*
    import javax.swing.;*
    *public class PayrollSystem implements ItemListener {*
    JPanel cards, JTextField, textField1, JLabel, label1;
    final static String EXECUTIVEPANEL = "1.EXECUTIVE";
    final static String HOURLYPANEL = "2.HOURLY WORKER";
    public void addComponentToPane(Container pane)
    *//Put the JComboBox in a JPanel to get a nicer look.*
    JPanel comboBoxPane = new JPanel(); //use FlowLayout
    JPanel userNameAndPasswordPane = new JPanel();
    *// User Name JLabel and JTextField*
    userNameAndPasswordPane.add(new JLabel("NAME"));
    JTextField textField1 = new JTextField(25);
    userNameAndPasswordPane.add(textField1);
    *String comboBoxItems[] = { EXECUTIVEPANEL, HOURLYPANEL };*
    JComboBox cb = new JComboBox(comboBoxItems);
    cb.setEditable(false);
    cb.addItemListener(this);
    comboBoxPane.add(cb);
    *//Create the "cards".*
    JPanel card1 = new JPanel();
    card1.add(new JLabel("WEEKLY SALARY"));
    card1.add(new JTextField(6));
    card1.add(new JLabel("TOTAL PAY"));
    card1.add(new JTextField(8));
    card1.add(new JButton("CALCULATE"));
    JPanel card2 = new JPanel();
    card2.add(new JLabel("HOURLY SALARY"));
    card2.add(new JTextField(6));
    card2.add(new JLabel("TOTAL HOURS WORK"));
    card2.add(new JTextField(8));
    card2.add(new JButton("CALCULATE"));
    *//Create the panel that contains the "cards".*
    cards= new JPanel(new CardLayout());
    cards.add(card1, EXECUTIVEPANEL);
    cards.add(card2, HOURLYPANEL);
    pane.add(comboBoxPane, BorderLayout.PAGE_START);
    pane.add(userNameAndPasswordPane, BorderLayout.CENTER);
    pane.add(cards, BorderLayout.PAGE_END);
    public void itemStateChanged(ItemEvent evt)
    CardLayout cl = (CardLayout)(cards.getLayout());
    cl.show(cards, (String)evt.getItem());
    ** GUI created*
    *private static void createAndShowGUI() {*
    *//Make sure we have nice window decorations.*
    JFrame.setDefaultLookAndFeelDecorated(true);
    *//Create and set up the window.*
    JFrame frame = new JFrame("GUI PAY CALCULATOR");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    *//Create and set up the content pane.*
    PayrollSystem demo = new PayrollSystem();
    demo.addComponentToPane(frame.getContentPane());
    *//Display the window.*
    frame.pack();
    frame.setVisible(true);
    *public static void main(String[] args) {*
    *//Schedule a job for the event-dispatching thread:*
    *//creating and showing this application's GUI.*
    *javax.swing.SwingUtilities.invokeLater(new Runnable() {*
    *public void run() {*
    createAndShowGUI();
    HOW CAN I PERFORM THE SWITCH STATEMENT INSIDE THIS CODE TO LET IT FULLY FUNCTIONAL..?
    I MUST PERFORM THE SWITCH STATEMENT LIKE IN THE QUESTION..
    PLEASE HELP ME..REALLY APPRECIATED...TQ

    hi
    A switch works with the byte, short, char, and int primitive data types. So you can simply give the
    switch (month) {
                case 1: 
                            System.out.println("January");
                            break;
                case 2:  {
                            System.out.println("February");
                             break;
                case 3: {
                              System.out.println("March");
                              break;
                             }where month controlls the flow
    moreover u can go to http://www.java-samples.com/java/free_calculator_application_in_java.htm
    for reference, just replace the if statement with switch with correct syntax

  • A Few Questions/Problems With My New iPod *PLEASE HELP*

    Hello! I just received my first iPod (4th Gen, 4GB, Red Nano) two days ago (Christmas Eve) and have so far been fairly happy with it. However, I'm experiencing a few problems with it and am hoping that someone could help me.
    Firstly, a few of the album covers on my iPod are just black squares. I've read other complaints about this on the forums, but haven't seen any solutions. What can I do to fix this?
    Second, I can't figure out how to put my songs in order. On iTunes, it allows me to put songs in alphabetical order, but being that most of my songs are part of full albums, I want my songs to be in the order of when they play on the actual albums. When I try to drag my songs into their correct places, I'm not able to.
    Also, is there any way to delete the games that my iPod came with? I think they might be taking up too much room for my liking...
    OK, well if you can help or add some extra tips to getting started with my iPod, it would be much appreciated. Thank you!

    Bump...

  • I am having problems with the sounds. Please help I am very worried about my iPad 2

    I tried restarting my iPad so the sounds would go normal but every time it goes to the homepage it's muted. When I receive a mail it's muted, when I am playing a couple of games it's sometimes muted and when I type it's muted. I checked the settings if it was muted but it was turned off. I imported my headphones and most of the apps I can hear but when I type It doesn't make the sounds. Any ideas to fix the sounds?

    Have you got notifications muted ? Only notifications (including games) get muted, so the Music/iPod and Videos apps, and headphones, still get sound.
    Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and it's the icon far left; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085

  • Im having problem with my macbook! please help!

    the old harddrive in my 2006 macbook is fried, so i brought 120 Gb hdd to put it in. I follow youtubes way. When i put the recovery cd in it and click option buttom, then it boot up the recovery cd, but somehow it says "mac os x cannot install in this system" I couldnt remember the exact what it say, but may i ask why? how? please help me!

    Hello
    You probably need to reformat the drive. Boot from the installer again, and go through the first screen (choose your language), then go to the Utilities menu, choose Disk Utility. Select your new drive on the left. Click on the "top level" of the drive (where you see the drive model number, not the name below it), and make sure that "Partition Map Scheme" at the bottom of the screen says "GUID Partition Scheme".
    If not, go to Partition, set up 1 partition and name it, choose "Mac Extended (Journaled)", click Options, choose GUID, and click Partition.
    If the partition scheme is already set to GUID, go to the Erase tab and reformat the drive as Mac Extended (Journaled). Then try going through the rest of the installer.
    Matt

  • Big Problem with brand new iPod please help ME!!

    Hi, I just today got a brand new iPod. I pluged it into my computer and put on about 700 songs immediatly. Then, I tried to put video on my iPod. It said it would not do this because it's not the right type of iPod. But it is a 5th Gen. iPod and it can play video. Anyway, I installed the latest iPod updater. Now, it says to install the new iTunes 6.01. So I tried but it says my disk is full. It is not full. Also, do I have to keep my previous "iPod for windows" files that are occupying space on my disk?

    Kenny,
    If you can back your songs up, and you have not rated a slew of them already, it might be a good idea to uninstall iTunes, then reinstall it and use the ipod updater to wipe the iPod. Just make sure you download and install 6.01 before you plug the iPod in. Maybe that will get you past the disk full problem. Just something to try.

  • Is anyone else having problems with syncing your phone & iPad since the last update?

    is anyone else having problems with syncing your phone & iPad since the last update?

    Here's the problems I'm having with iPad 2 and iOS 5.1:
    Okay ... so, because I had less than a 1 Gig left (as reported by iTunes) on my 64Gig iPad, and the majority of the space was being used by "Photos" ... I decided to not keep my PC photos directory in sync with my iPad (Windows 7). So, in iTunes, I unchecked the option to sync computer photos to the iPad. I got the standard popup warning message that my iPad would not contain those albums after the next sync. I clicked OK and proceeded to sync expecting to have lots of space freed up.
    But weird things happened after syncing.
    (1) I still have all my photos on my iPad .... nothing disappeared at all. (And performed multiple syncs to try to force the change ... still nothing has been removed from my iPad.)
    (2) Somehow, I gained 20 Gigs of free space, as reported by both iTunes and my iPad as well.
    Anyone know what's going on here?
    I do have iMovie and another movie making app, Avid. Both of these contain projects that refer to photos in albums that were supposed to be removed after the sync ... but I can't imagine that would keep them there. Anyone have any ideas?
    I also installed the iPad app, iPhoto. I noticed that it build a directory listing and continuously want to update that listing from time to time.
    Would any of these things cause the iTunes photo sync changes to be ignored? And, how did I get free space to report back with an additional 19Gig or so, when there's no change at all.
    Unsure what's going on ...

  • Is anyone else having problems with syncing photos  on ipad - seems to be fragmenting the events

    Is anyone else having problems with syncing photos  on ipad - seems to be fragmenting the events

    Here's the problems I'm having with iPad 2 and iOS 5.1:
    Okay ... so, because I had less than a 1 Gig left (as reported by iTunes) on my 64Gig iPad, and the majority of the space was being used by "Photos" ... I decided to not keep my PC photos directory in sync with my iPad (Windows 7). So, in iTunes, I unchecked the option to sync computer photos to the iPad. I got the standard popup warning message that my iPad would not contain those albums after the next sync. I clicked OK and proceeded to sync expecting to have lots of space freed up.
    But weird things happened after syncing.
    (1) I still have all my photos on my iPad .... nothing disappeared at all. (And performed multiple syncs to try to force the change ... still nothing has been removed from my iPad.)
    (2) Somehow, I gained 20 Gigs of free space, as reported by both iTunes and my iPad as well.
    Anyone know what's going on here?
    I do have iMovie and another movie making app, Avid. Both of these contain projects that refer to photos in albums that were supposed to be removed after the sync ... but I can't imagine that would keep them there. Anyone have any ideas?
    I also installed the iPad app, iPhoto. I noticed that it build a directory listing and continuously want to update that listing from time to time.
    Would any of these things cause the iTunes photo sync changes to be ignored? And, how did I get free space to report back with an additional 19Gig or so, when there's no change at all.
    Unsure what's going on ...

  • Problems with syncing, recognising iPod, thinking it's corrupted...

    Hi, I've had this 30GB iPod photo of mine for a number of years now but for a long time it's been having problems with syncing. I've gotten an exciting variety of error messages when trying to sync with my iTunes, from my iPod software is out of date, by iPod is corrupted, to simply that my iPod will not sync for no adequately explained reason. Occasionally also Windows fails to recognise it. This was never too big of a problem because a few songs would transfer usually before it errored out on me, or I'd just unplug it, restart it and plug it in again and the few songs I wanted would go on. (I don't add giant chunks of new music to it that often) However just recently I discovered that about 300 songs were missing from it and I can't for the life of me get it to sync up again to put them back on. iTunes has been saying that An iPod has been plugged in but that it doesn't recognise it, or it'll start syncing and then say "Attempting to copy to disk "CASSIE'S IPOD" failed. The disk could not be read from or written to." Any help or advice? is my iPod just horribly corrupted in some way and beyond help except for expensive repairs and replacement? Or is this a software thing I can actually fix somehow?

    I eventually called an Apple Repair person about my Ipod, who advised me that "it sounded quite serious" and all he would do if I brought it in for repair would be to replace it with another reconditioned unit which would cost me $195! This was a newly "reconditioned" unit that I had just bought, so unfortunately it ended up going back. I've just requested a refund this time because this is the 2nd time this has happened to me in a month! I'm starting to think I was never destined to own an operating Ipod! I think I'll look at a Sony or Creative MP3 Player as an alternate. They seem to have good reviews and they'll probably work first time round! I'm a bit tired of Apple now! There just seems to be too many things that can - and DO - go wrong!

  • Problems with syncing my ipod

    Yesterday I updated my iPod tot 1.1
    After that it had that crappie bug with the video's, so I downgraded my iPod. After that I updated it again tot 1.1
    Now I have a problem with syncing my iPod (video's only).
    First I had some series it synced with my iPod, also after the first update. But after the second update it tells me there are some files it couldn't sync. (some videos it did sync btw, and the problem with the sound has gone, I can play movies normal now!)
    So the problem is now that it doesn't sync all my movies anymore, and I converted all of them with the same program..
    Anyone has the same problem or knows how to solve?

    Mijn advies: terug naar versie 1.0. Tenzij je versie 1.1 nodig hebt, natuurlijk (voor radio o.i.d.). Of wachten op versie 1.2
    Ik heb zojuist versie 1.0 geherinstalleerd, en alles werkt nu prima. En telkens als iTunes vraagt of ik de nieuwste versie wil installeren klik ik op NEE.

  • I'm having trouble with syncing my iPod to my computer.

    I'm having trouble with syncing my iPod. It gets stuck on the last step saying, "Waiting for changes to be applied." It's been doing this for the last half hour. Is there anything I can do to correct this or is am just going to have to restore my iPod?

    You can sync/manually mange iphone with one and only one computer.  If you sync/manually mange to anther, then it will erase the current content and replace with content from the new computer.
    What "trouble" are you having?

  • I am using windows 8. I have downloaded i tunes. but i can not find my i phone any where in i tunes menu. so I am having problem in syncing my phone. please guide me

    I am using windows 8. I have downloaded i tunes. but i can not find my i phone any where in i tunes menu. so I am having problem in syncing my phone. please guide me

    If the device doesn't appear as shown in the following instructions: http://support.apple.com/kb/HT1386
    then the following may help: http://support.apple.com/kb/TS1538

Maybe you are looking for