Please help I am having big trouble!!

Hey,
I really need help. I have never had a problem with my I-pod mini but today was the first day I tried downloading a burnt CD song on it(my mini i-pod). It would work and play on my comp. and it looked as if there weren't any problems downloading it from my comp. to ipod, but when i tried to find it there were no traces of it anywhere on my i-pod!!!
please help thx
from,
a worried costemer

Hi Heather and welcome to Disussions.
First Reset your iPod and then download the song to your iPod again. Check it in iTunes by playing it again (Iknow you already did it once) and then see if you can find it.
Hope thi shelps, post back with questions

Similar Messages

  • I'm having big trouble with my new mainboard: Part II

    Hi  
    I haven't got any more replies to my post "I'm having big trouble with my new mainboard" by Krelian 2003.09.13 at 05:25. Please help! I've been struggling with this for a LONG time. And now my computer won't boot at all! Sometimes the LED's in front of the computer lights up for half a second, and nothing more happens. The only sign of life is the green light in the LAN jack. It happened after I took the ide cable for my harddrive in and out of the mainboard. This is insane, how can that suddeny happen :O ?! I was asked by wonkanoby to post max amps for my PSU, I did, and I really need to know if I maybe need a new PSU, since he asked that. Can a new PSU solve all the problems mentioned in my previous posts? Everything was fine except that I couldn't get into Windows, before i tried another harddrive on my computer. How can that complicate things so much? I have tried going barebone, and taking out the cmos battery and setting the jumpers JBAT1, J10 and J11. I have also tried every suggestion I got. Please help! I really need to get this fixed!
    -Krelian

    Some power supplies or designed so that if there is a short or overload they shut them selfs off and some will not turn back on. Some have a relay that will click back on and work, some you have to  cycle the power switch. Those that won't come back on will have to be replaced. I'm not saying that yours is that type as I have no way of telling. But if you have a friend who will loan you a good power supply you might try it. As someone else said just turning off the power will not darn all the power from some motherboards. To test this turn off your power supply than turn on the computer with the start botton. Mine will flash the lights and fans will start to spin than die. So every time you turn off computer to work on it. After turning off PSU hit the start botton to drian any power left in it before working on it. Also do this after unplugging it just to make sure.

  • I am having big troubles by sending emails - not receive them

    I am having big troubles by sending emails! I can receive them, but as soon as I want to send an email myself, then it 1) says that the email is too big, or 2) says that my password is wrong, or 3) says that the server is out of function. Anyone knows how to solve this problem?

    Mail (Mountain Lion): Solve Mail problems

  • Please help, i am having trouble figuring it out- two sided dice

    In the game of Craps, a "Pass Line" bet proceeds as follows. Using two six-sided dice, the first roll of the dice in a craps round is called the "Come Out Roll." The bet immediately wins when the come out roll is 7 or 11, and loses when the come out roll is 2, 3, or 12. If 4, 5, 6, 8, 9, or 10 is rolled on the come out roll, that number becomes "the point." The player keeps rolling the dice until either 7 or the point is rolled. If the point is rolled first, then the player wins the bet. If the player rolls a 7 first, then the player loses.
    Write a program that plays the game of Craps using the rules stated above so that it simulates a game without human input. Instead of asking for a wager, the program should just calculate if the player would win or lose. The program should simulate rolling the two dice and calculate the sum. Add a loop so that the program plays 10,000 games. Add counters that count how many times the player wins, and how many times the player loses. At the end of the 10,000 games, compute the probability of winning, i.e. Wins / (Wins + Losses) and output this value. Over the long run, who is going to win the most games of Craps, you or the house?
    please help me in this project
    public class Kharel_Ch3_2 {
    public static int NUM_GAMES = 10000;
    public static void main(String[] args) {
    int numWins = 0;
    int numLosses = 0;
    int x;
    int y;
    x = (int)(Math.random()*6) + 1;
    y = (int)(Math.random()*6) + 1;
    System.out.println("The roll of first Dice is " + x);
    System.out.println("The roll of Second Dice is " + y);
    int roll = (x + y);
    System.out.println("The sum of two dice is " + (roll));
    int point = (4 & 5 & 6 & 8 & 9 & 10);
    for (int i = 1; i<=10000; i++)
    if (roll == 7 || roll == 11)
    System.out.println("You win!");
    numWins = numWins +1;
    else if (roll==2 || roll==3 || roll==12)
    System.out.println("You Lose!");
    numLosses = numLosses + 1;
    else
    System.out.println("Roll Dice again!!!");
    x = (int)(Math.random()*6) + 1;
    y = (int)(Math.random()*6) + 1;
    roll = (x + y);
    if (roll == point);
    while (roll !=7 || roll !=point)
    x=(int)(Math.random()*6);
    y=(int)(Math.random()*6);
    roll = (x + y);
    int sum = roll;
    if (roll== point)
    numWins = numWins+1;
    else numLosses=numLosses+1;
    // Output probability of winning
    System.out.println("In the simulation, we won " + numWins +
    " times and lost " + numLosses + " times, ");
    System.out.println("for a probability of " +
    (double)(numWins)/(double)(numWins + numLosses));
    }

    { public static int NUM_GAMES = 10000;
    public static void main(String[] args) {
    int numWins = 0;
    int numLosses = 0;
    int x;
    int y;
    x = (int)(Math.random()*6) + 1;
    y = (int)(Math.random()*6) + 1;
    System.out.println("The roll of first Dice is " + x);
    System.out.println("The roll of Second Dice is " + y);
    int roll = (x + y);
    System.out.println("The sum of two dice is " + (roll));
    int point = (4 & 5 & 6 & 8 & 9 & 10);
    for (int i = 1; i<=10000; i++)
    if (roll == 7 || roll == 11)
    System.out.println("You win!");
    numWins = numWins +1;
    else if (roll==2 || roll==3 || roll==12)
    System.out.println("You Lose!");
    numLosses = numLosses + 1;
    else
    System.out.println("Roll Dice again!!!");
    x = (int)(Math.random()*6) + 1;
    y = (int)(Math.random()*6) + 1;
    roll = (x + y);
    if (roll == point);
    while (roll !=7 || roll !=point)
    x=(int)(Math.random()*6);
    y=(int)(Math.random()*6);
    roll = (x + y);
    int sum = roll;
    if (roll== point)
    numWins = numWins+1;
    else numLosses=numLosses+1;
    // Output probability of winning
    System.out.println("In the simulation, we won " + numWins +
    " times and lost " + numLosses + " times, ");
    System.out.println("for a probability of " +
    (double)(numWins)/(double)(numWins + numLosses));
    }}

  • I'm having big trouble with my new mainboard.

    Please help!
    I've bought myself a new mainboard, a MSI K7N2 Delta-L. I was having trouble getting Windows XP to detect my harddrive, but then I found out that I had to to first format my harddisk. But now I've got a new problem. I first tried a different harddrive on my computer, to see if something was wrong with my harddrive. But, there wasn't, since I tried my harddrive on another computer, and it worked. So, when I put my harddrive back into my computer, I can't enter BIOS. The screen either turns white, or some colors appear, and nothing happens. If I start without trying to enter BIOS, the same thing happens after detecting IDE devices (which takes an unusally long amount of time). When the white screen is up, my CD-rom tries to start my Windows XP cd several times, but, nothing happens. How can I get my computer to start normally, so that I can reinstall Windows and live happily ever after.
    -Krelian
    MSI K7N2 Delta-L
    TwinMOS PC3200 DDR-DIMM 512MB m/Winbond
    AMD Athlon 1.2 GHz
    Western Digital Caviar 120 GB
    Plextor CD-RW 48x/24x/48x IDE
    Sony DVD Player
    Sapphire Radeon 9500 PRO
    Creative SoundBlaster Audigy Player
    Chieftech Dragon Miditower

    I pulled the jumper out of my harddisk, and it detected IDE devices extremely fast, as it should. But, I still can't enter BIOS. After detecting IDE devices, the screen turns white, but not for long, I could hear the harddrive booting, and the Windows XP boot screen appeared for about half a second. Then the computer restarted, and the same happened again.
    -Krelian

  • Why is my iPod Touch's memory 0 when i only have 249 mb of photos and camera and 23l mb of Music? Please help this is a big issue! what do i do? ps i dont want to loose 2 of my apps!!

    I have a 8GB Ipod Touch and i know its not a lot, but in the beginning it was working fine. For some time now it wont let me excede even 1GB of memory. i have no games, no apps, not many contacts, hardly anything! only 249 mb of photos and camera and 23l mb of Music. i have backed it up and restarted it and everything and i am getting annoyed! please help me!! i cant live without my ipod!!! This is urgent!
    P.S: i have 2 apps on my ipod that i would not like to loose! IF theres anyway to save them in the process of fixing my ipod that will be great!
    Thank you!

    An "other" that large usually indicates that the "other" includes corrupted files.  Usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Backing up, updating, and restoring iOS software

  • Help, I'm in big trouble.

    I accidently deleted my 12 year old daughters songs. My daughter had around 80 songs on her old ipod and I was trying to transfer them on to itunes so I could put them on her new ipod when they were deleted. They are not on her old ipod and no where on my computer, not even on the itunes. My question is; Can I go back on my account with the itunes store and re-download them since I have already paid for them? She does not know yet so I am trying to see if this is possible before I have to tell her all her favorite songs are gone. I know she will understand but that's a lot of money to spend again for the same songs to be downloaded from itunes store. Please help!

    Sorry, but I don't think you can do that. And if you don't have them on any computer, or on any of your iPods, then there isn't anything you can do. If they are still on another computer, maybe the first one you used to download those 80 songs, then you can go back to that computer and put them back onto the iPod.

  • Please help, I am having java.rmi.UnmarshalException.

    First I would like to show you the interface code i want to implement, following is the code.
    package bis.opencontrol.opcconnector;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    import javax.swing.tree.*;
    public interface ReceiveNodeInterface extends Remote
    DefaultMutableTreeNode getRootNode(String x) throws RemoteException;
    The server class which implements this interface is as follows...
    package bis.opencontrol.opcconnector;
    public class RMIServiceToSendNodesHierarchy extends java.rmi.server.UnicastRemoteObject implements ReceiveNodeInterface
    public DefaultMutableTreeNode getRootNode(String x) throws RemoteException
    System.out.println(x);
    return(TimerToGetNodesHierarchy.getRootNode());
    public RMIServiceToSendNodesHierarchy() throws RemoteException
    try
    thisAddress= (InetAddress.getLocalHost()).toString();
    catch(Exception e)
    throw new RemoteException("can't get inet address.");
    thisPort = 1099;
    System.out.println("Starting RMI service at address = "+thisAddress+" and PortNo = "+thisPort);
    System.getProperties().setProperty("java.security.policy", "wideopen.policy");
    if(System.getSecurityManager() == null)
    System.setSecurityManager(new RMISecurityManager());
    try
    registry = LocateRegistry.createRegistry(thisPort);
    registry.rebind("RMIServiceToSendNodesHierarchy", this);
    The client class which will send request to server is as follows...
    package tagbrowser;
    public class TagBrowser extends javax.swing.JFrame
    ReceiveNodeInterface rmiServer;
    public TagBrowser() throws MalformedURLException
    getRootNodeIntoTree();
    void getRootNodeIntoTree() throws MalformedURLException
    String text = "Please, send us the root node.";
    try
    registry = LocateRegistry.getRegistry(serverAddress, 1099);
    String[] list = registry.list();
                   if( list == null )
                        throw new RemoteException( "list == null" );
    else
    for (int k=0; k < list.length; k++)
    System.out.println("registry" + k + ": " + list[k].toString());
    System.getProperties().setProperty("java.security.policy", "wideopen.policy");
    if(System.getSecurityManager() == null)
    System.setSecurityManager(new RMISecurityManager());
    rmiServer = (ReceiveNodeInterface)(registry.lookup("RMIServiceToSendNodesHierarchy"));
    rootNode = rmiServer.getRootNode(text);
    catch(RemoteException e){
    e.printStackTrace();
    catch(NotBoundException e){
    e.printStackTrace();
    Well, when I run this rmi client application I get this following error...
    registry0: RMIServiceToSendNodesHierarchy
    java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
    java.lang.ClassNotFoundException: bis.opencontrol.opcconnector.ReceiveNodeInterface
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    at tagbrowser.TagBrowser.getRootNodeIntoTree(TagBrowser.java:126)
    at tagbrowser.TagBrowser.<init>(TagBrowser.java:39)
    at tagbrowser.Main.main(Main.java:19)
    Caused by: java.lang.ClassNotFoundException: bis.opencontrol.opcconnector.ReceiveNodeInterface
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    ... 4 more
    BUILD SUCCESSFUL (total time: 1 second)

    System.out.println("Starting RMI service at address = "+thisAddress+" and PortNo = "+thisPort);That's not true unless you call super(1099) inside this constructor. So at this point you are printing misleading information.
    System.getProperties().setProperty("java.security.policy", "wideopen.policy");
    if(System.getSecurityManager() == null)
    System.setSecurityManager(new RMISecurityManager());
    }You normally don't need a security manager in an RMI server. You can delete all this.
    package tagbrowser;I would expect to see either import bis.opencontrol.opcconnector.* or import bis.opencontrol.opcconnector.ReceiveNodeInterface here. So there is clearly something wrong with your project structure. I suspect you have copied ReceiveNodeInterface from the server package to the client. That isn't valid. The remote interface is the same at both client and server.
    I am having java.rmi.UnmarshalExceptionWell, actually you are having java.lang.ClassNotFoundException: bis.opencontrol.opcconnector.ReceiveNodeInterface
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    due to the error described above. This also implies that bis.opencontrol.opcconnector.ReceiveNodeInterface needs to be available to the client via its classpath, i.e. usually via the same JAR that the client classes are in.

  • Having big trouble with ipod

    Ok, my computer recently crashed and then we got it repaired so i had to reload itunes and all that but, when i did that i didnt have my songs on it. i had uathorize it to transerfered my pucheses from my ipod on the itunes. the problem is when i try to load any new song on my ipod it wont let me.
    Please someone help me
      Windows XP  

    When it asks if you want to erase and syncronize with this computer, choose NO. Then change to settings on the iPod to Manually Manage your music. Check out this article:
    http://docs.info.apple.com/article.html?artnum=61148

  • Please help, I am having a nightmare with upgrading iphone 4

    Hello everyone,
    My dad asked me to upadte his iphone for him and I just can't get it to work now.
    I backed the iphone 4 up on itunes and then ran the update, initially when it had finished it wouldn't allow me to access my wifi so I looked that up and re-enetered the details and that is now working but it keeps asking me to either restore or set up as a new phone, I have restored from itunes while the sync is going through it stayes on a connected to itunes page and then just says connect to itunes so it looks like the restore doesn't work. Itunes seems to be going through the motions on the top bar but I just can't get off these white set up screens. What seems odd is that I disconnected the iphone and then reconnected it and it took me to iphoto and imported photos from the phone so there must be data on it. Can anyone point me in the right direction please?

    Where did you get the phone? Sounds like it may have been hacked to unlock it. If it was originally carrier locked, ONLY the original carrier can authorize unlocking it.  FYI: The Gevey SIM is illegal in every country on the planet.
    Hacked and jailbroken devices can NOT be discussed here per the terms of service.

  • Please help, Nokia c2-02 browser troubles

    It's been 3 months since I've updated my nokia browser and since then the browser is not working
    I have updated my phone using nokia suite 3 times
    (today was the 3th time)
    I've been searching online for a solution but all whatI've seen was to download the nokia browser but I haven't find one suitable to my phone (nokia c2-02) if there is please post me a direct link
    The other link that I found post on the nokia forum were unsuitable for my phone
    I have searched throught ovi store for days but I haven't find "The nokia browser - new and improved"
    I have downloaded other browsers which I use
    but they don't support 0.facebook.com (which is a website that is given and provided free in my country )
    The old nokia browser supported that website
    Is there anyway that I may use to restore my old browser ?
    If there isn't please give me a direct link to download a new browser (not from ovi store because as I mentioned earlier it does not support nokia c2-02)
    And thank you very much

    You may try the steps provided on this link .
    Aleisha11

  • Please HELP! Flashed N900 Big mistake :o(

    I flashed my N900 under advice.  Now it shows no sim card present. Tried other sims dont show them either.  I cannot live without my phone...  To all you clever people out there who no something, anything or lots more than this idot typing this, I am begging for help.
    Regards Sillytits..
    Solved!
    Go to Solution.

    virajxx3006 wrote:
    youve reflashed your device to PR 1.2!Now we are in PR 1.3 . SO,
    Download these global firmwares from here.
    http://tablets-dev.nokia.com/nokia_N900.php
    RX-51_2009SE_20.2010.36-2_PR_COMBINED_MR0_ARM.bin
    RX-51_2009SE_10.2010.13-2.VANILLA_PR_EMMC_MR0_ARM.bin
    *First OS.Then EMMC.(Old way,It works.so dont worry)
    1)
    flasher-3.5.exe -F RX-51_2009SE_20.2010.36-2_PR_COMBINED_MR0_ARM.bin -f
    2)
    flasher-3.5.exe -F RX-51_2009SE_10.2010.13-2.VANILLA_PR_EMMC_MR0_ARM.bin -f -R
    good call virajxx3006.
    also, in case your pc still will not allow for you to use that file...it is most likely going to be due to the length of the file name.  (happens for sure on my laptops)  just name the :
    RX-51_2009SE_20.2010.36-2_PR_COMBINED_MR0_ARM.bin to "pr1.3.bin"
    RX-51_2009SE_10.2010.13-2.VANILLA_PR_EMMC_MR0_ARM.bin to "vanilla.bin"
    this will cause for less issues in typos as well as IF there is an issue and the file name is too long, it will work with no problems.
    @DJ MATT
    funny, i think just about all of us have tried that once that have been messing with our devices. 

  • PLEASE HELP!! HAVING PROBLEMS!!

    Here is a copy of my console log.. I cannot open any .dmg file.. and I cannot use disk utility to fix it!!!
    Thanks for any help.. I have had no luck with any of my other posts.
    Apr 24 00:26:36 fiveten-productions-mac-mini /Applications/Safari.app/Contents/MacOS/Safari: Corrupt JPEG data: premature end of data segment\n
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    2006-04-24 00:37:57.554 diskimages-helper[4172] ERROR: unable to load disk image driver - 0xE00002C0/-536870208 - Device not configured.
    Disk Utility started.
    2006-04-24 00:49:34.547 Disk Utility[4191] Could not connect the action optionsPanelGUIDButtonAction: to target of class DUPartition
    2006-04-24 00:49:34.547 Disk Utility[4191] Could not connect the action optionsPanelAPMButtonAction: to target of class DUPartition
    2006-04-24 00:49:34.548 Disk Utility[4191] Could not connect the action optionsPanelMBRButtonAction: to target of class DUPartition
    2006-04-24 00:49:34.548 Disk Utility[4191] Could not connect the action optionsPanelHelpButtonAction: to target of class DUPartition
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    load_hdi: timed out waiting for driver to load
    2006-04-24 00:51:56.971 diskimages-helper[4193] ERROR: unable to load disk image driver - 0xE00002C0/-536870208 - Device not configured.

    There is a rash of exploits for Mac OS X and one of them is based upon corrupted images. Hopefully you have been backing up your files and cloning your boot drive to a external drive and keeping it disconnected for cases like this.
    After you have reinstalled the OS, consider visiting Carbon Copy Cloner forums to learn how to clone your boot drive.

  • PLEASE HELP: AUDIGY 4 REMOTE BIG DISAPPOINTM

    Hello,
    I need a fix for the rm-500 controller. This huge screen that I'm getting when I try to use it is really lame and it's freaking me out. You know that blue screen some sadist called "entertainment center" that takes over the whole monitor. You can't minimize it, there's nothing you can do about it but turn it off. I want to be able to control with this remote other progs like winamp etc., the way it is with Audigy 2. I'm sure there is a hack somewhere. I can't imagine other owners of this card not using the remote it came with! Please share. Any valuable info is greatly appreciated.
    P.S. Also there's no support for the most popular m3u playlist format? This just cannot be. Is there an update or hack to fix this? Thanks again

    Finally got in touch with tech support. They said that other programs are supported and that I need to reinstall. I need some feedback please. From what I heard so far was that other programs/devices are disabled for rm-500. Thanks

  • Brand new ipod touch 5 64gb being reconized as a camera by windows xp, please help. I follewed the trouble shooting

    Going crazy here... every other ipod, nano, touch, shuffle no problem.  I finally invested in the new 64 gb touch and xp is reconizing it as a camera

    It is a camera and that is all Windows will ever detect it as.
    Does iTunes detect the device?
    iPod Touch's, iPhones, and iPads are not usable as a mass storage device the way other iPods are.

Maybe you are looking for