My I-Pod has a problem Help Please!

Hey,
My i-pod is having some strange problems. First off, it is not turning on when it isn't plugged into a power source. I'm not sure if that is because it is the battery being low or what. Second and most important. My i-pod seems to be deleting songs off itself. The songs are still on my I-tunes on my computer, but they are being deleted off the I-pod itself. Then when I try to re upload the songs to my Computer, it says that I don't have enough write access. Please help!
Thanks.

Try to reset your iPod
Press and hold the MENU and CENTER buttons - at the same time - until the Apple logo appears. This should take about 6 seconds. Also, you want to do this while your iPod is connected to your computer.

Similar Messages

  • I can't add my apps to an older i pod touch? keeps asking to download new version of i pod software? someone help please?

    i can't add my apps to an older i pod touch? keeps asking to download new version of i pod software? someone help please?

    What generation iPod touch? Model Identifier Utility
    Updating iOS
    Device
    Latest Update Available
    iTunes Version Required
    iPhone 2G (original iPhone), iPod touch (1st generation)
    iOS 3.1.3
    iTunes 9.2
    iPhone 3G, iPod touch (2nd generation)
    iOS 4.2.1
    iTunes 10.1
    iPod touch (3rd generation), iPad (Original)
    iOS 5.1.1
    iTunes 10.5
    iPhone 3GS
    iOS 6.1.3
    iTunes 10.7
    iPod touch (4th generation)
    iOS 6.1.5
    iTunes 10.7
    iPhone 4, iPhone 4S, iPhone 5, iPhone 5S,
    iPhone 5C, iPod touch (5th generation), iPad 2,
    iPad (3rd and 4th generation), iPad Air,
    iPad mini (1st and 2nd generation)
    iOS 7.0.4
    iTunes 11.1
    If your iPod cannot run a newer software version (see the table above), then see:
    Finding iOS Apps Compatible with Older Devices

  • My ipod nanos are not being recognized in iTunes. I have tried everything! Changed the drive letter, the disk to FAT32, resetted it, downloaded itunes again, but nothing has worked! HELP please.

    Somehow my nano now lost all its music so now its empty!  Also, before windows used to recognize my ipod and i'd get a pop up saying "open to view files" but now I don't even get that anymore. I have also tried syncing it by putting them in disk mode but NOTHING has worked. I am getting so frustrated.
    I followed all of the "steps" on the apple support page but none of that has worked too. PLEASE help me because I literally feel like just throwing my ipods out the window. I never had this problem before.

    When you connect your iPod to your PC, what appears on the iPod's display?  Does the iPod charge when you have it plugged into the PC?
    Are you running the latest version of iTunes (10.6.3)?  It wouldn't hurt to also make sure your Windows OS has all of the latest patches and updates as well.
    I assume you have plugged the iPod ino different USB ports located directly on your PC and tried using another 30 pin dock connector cable to rule out the possibility of a bad cable?
    B-rock

  • SQL INSERT problem - help please

    Hello,
    I'm having a problem with INSERT statement.
    There is a "ShowFinal.jsp" page, which is a list of candidates who selected from the second
    interview. The user picked some candidates from the list and conduct the 3rd interview. After
    he check suitable candidates(who are selected from the 3rd interview) from the list , enter
    basic salary for every selected candidate, enter date of interview and finally submit the form.
    These data should be save into these tables.
    FinalSelect(nicNo,date)
    EmpSalary(nicNo,basicSal)
    In this "ShowFinal.jsp" page, it validates the following conditions using JavaScript.
    1) If the user submit the form without checking at least one checkbox, then the system should be
    display an alert message ("Please select at least one candidate").
    2) If the user submit the form without entering the basic salary of that candidate which was
    checked, then the system should be display an alert message ("Please enter basic salary").
    These are working well. But my problem is how to wrote the "AddNewFinal.jsp" page to save these
    data into the db.
    Here is my code which I have wrote. But it points an error.
    "AddNewFinal.jsp"
    String interviewDate = request.getParameter("date");
    String[] value = request.getParameterValues("ChkNicno");
    String[] bs = request.getParameterValues("basicSal");
    String sql ="INSERT INTO finalselect (nicNo,date) VALUES(?,?)";
    String sql2 ="INSERT INTO EmpSalary (nicNo,basicSal) VALUES(?,?)";
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2 = connection.prepareStatement(sql2);
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1 = connection.prepareStatement(sql);
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    Here is the code for "ShowFinal.jsp".
    <form name="ShowFinal" method="POST" action="AddNewFinal.jsp" onsubmit="return checkEmpty() &&
    ValidateDate();">
    <%--  Loop through the list and print each item --%>
    <%
         int iCounter = 0; //counter for incremental value
         while (igroups.hasNext()) {
              Selection s = (Selection) igroups.next();
              iCounter+=1; //increment
    %>
    <tr>
         <td style="background-color:ivory" noWrap width="20">
         <input type="checkbox" name="<%= "ChkNicno" + iCounter %>"      
    value="<%=s.getNicno()%>"></td>
            <td style="background-color:ivory" noWrap width="39">
                 <%= s.getNicno() %>  </td>
         <td style="background-color:ivory" noWrap width="174">
              <input type="text" name="<%= "basicSal" + iCounter %>" size="10"> </td>
    </tr>
    <%
    %>
    Date of interview<input type="text" name="date" size="17"></td>
    <input type="submit" value="APPROVE CANDIDATE" name="B1" style="border: 1px solid #0000FF">
    </form>........................................................
    Here is the error generated by TOMCAT.
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.AddNewFinal_jsp._jspService(AddNewFinal_jsp.java:70)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
    I have goto the file "AddNewFinal_jsp.java". The line 70 points to the following line.
    for(int i=0; i < value.length; i++){ [/b]
    Please can someone help me to solve this problem? Please help me to do this task.
    Thanks.

    Hi Casabianca ,
    It is clearly that your problem is not on the database end, more like a servlet/jsp issue.
    I will not comment on the javascript portion, but rather the 2 jsps.
    a simple way to trace what's go wrong is to check the final result (the html code) of the first jsp (showFinal.jsp), and compare against what is expected by the 2nd jsp (AddNewFinal.jsp). Most browser do provide "view source" on the page visited.
    the following code
    <input type="checkbox" name="<%= "ChkNicno" + iCounter %>" value="<%=s.getNicno() %>">
    <input type="text" name="<%= "basicSal" + iCounter %>"
    would likely to be "translated" to html code something as follow:
    <input type="checkbox" name=""ChkNicno0" value="nicNo>">
    <input type="text" name="basicSal0">
    the original code in "AddNewFinal.jsp" using
    request.getParameterValues("ChkNicno");
    which looking for a none exist http request parameter (sent as "ChkNicno0",etc but look for "ChkNicno"), which has explained before.
    the second attempt to use String[] value = request.getParameterValues("ChkNicno" + iCounter); give Cannot resolove symbol :iCounter. because iCounter never defined in the 2nd jsp!
    Most of the error message do give clue to cause of error... : )
    not too sure on your intension, assume you wish to update only those selected (checked) row to db.
    some suggestions:
    1) <input type="text" name="ChkNicno" size="10"> </td>...
    <input type="text" name="basicSal" size="10"> instead.
    then use javascript to based on checked element index (refer to javascript spec for more details), for those index not checked, clear off the correspond index "basicSal" field value.
    e.g. ChkNicno[1] is not checked, empty basicSal[1] value before submission.
    This will give us only selected rows values.
    2) retain the code
    String[] value = request.getParameterValues("ChkNicno");
    String[] bs = request.getParameterValues("basicSal");at 2nd jsp, as now the http request will pass parameters using "ChkNicno" and "basicSal".
    3) some change to the code for optimization
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2 = connection.prepareStatement(sql2);
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1 = connection.prepareStatement(sql);
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    to
    pstmt1 = connection.prepareStatement(sql);
    pstmt2 = connection.prepareStatement(sql2);
    for(int i=0; i < value.length; i++){
         String temp = value;     
         for(int x=0; x < bs.length; x++){
              String basic = bs[x];
              pstmt2.setString(1, temp);
              pstmt2.setString(2, basic);
              int RowCount1= pstmt2.executeUpdate();
         pstmt1.setString(1, temp);
         pstmt1.setString(2, interviewDate);
         int RowCount= pstmt1.executeUpdate();
    preparestatement created once should be sufficient as we do not change the sql statement throughout the loop.
    there are better solutions out there, this just some ideas and suggestions.Do try out if you wish.
    Hope it helps. : )

  • VIRUS PROBLEMS, HELP PLEASE???

    I continue to have messages popping up saying my computer is infected. It wants me to cleanup and I have to register with Mac Shield 2.6.  Pronograhic websites keep popping up.  Anyone having this problem?  Did not have this problem yesterday, but it's here today!  There is also a Red Sheild on the top of the toolbar where it shows the time, battery life, etc.  Right clicking on the sheild drops down Scan Now, Cleanup, Control Center, Scan, System Info, Settings, About, and Register.  A pron site just popped up again!  Need help Please!!

    Fuony wrote:
    The Mac Shield malware can come through Firefox too if you allow it to and you click on it!
    Your exactly right, it is possible that if you visit a site and need the scripts to run for something that the malware that uses Javascript is on that site, then your going to be presented with it.
    The thing is with the Firefox + NoScript combination defeats alot of the web side trickery the malware authors are using to get the malware to appear in the first place.
    Also this "MacDefender" isn't the only malware making the rounds. There are some serious Flash vulnerabilities being hosted on hostile/adult websites that are running scripts for no apparent reason other than to try to infect your machine.
    By running all scripts all the time, your computer is in a state as if you tried running across a busy highway blindfolded.
    As a lifelong "MacHead" I can understand Apple loyalty, but if Apple isn't cutting the mustard on their browser security, rather place their users security at serious risk for the sake of convenience, then I have to think about using and recommending to others something else that is more secure.
    As a example, I surf thousands of web pages a day, some on really nasty sites, yet I haven't seen this "MacDefender" appear on my computer. Even when I purposely visited links that people have submitted that had the malware. (I maintain a couple of bootable clones of my boot drive just in case)

  • ICloud problems help please!

    I have an iPhone 6 and during the setup I must have did something wrong and now I have my old iCloud account on it that I no longer remember the password, security questions, and no longer have the email address to that account.  I think I was hacked and my password and security questions changed. I want to log out of iCloud and start using my current iCloud account.  I know these are security measures, but how can I get logged out??? My iPhone is having problems since the latest update and now I can't make a call or text.  I can't call apple support without a working number  HELP Please.

    Hello shelbyrecords,
    Oh no! That sounds really frustrating. Unfortunately, if iCloud Find my iPhone Activation Lock is enabled on the device we’ll need to gain access to your previous Apple ID account to disable it. Based on the information you have provided, it sounds like you may need a personalized support experience to recover your previous Apple ID:
    If you forgot your Apple ID password - Apple Support
    http://support.apple.com/en-us/HT201487
    Make sure that you’re entering the correct Apple ID. In most cases, your Apple ID is also the primary email address of your Apple ID account. If these steps didn't help you change your password, contact Apple Support.
    Thanks,
    Matt M.

  • Soundtrack problems - help please

    Help please. I tried doing a send to multi-track project from FCP with the base layer video option and kept getting the 'error sending selection to Soundtrack Pro' message. I did a search and the suggestion is that I have no disk space but I have over 600GB!
    Then I tried a send with the full video and the file saved okay. However when I try to open the .stmp file, Soundtrack Pro starts and then freezes. I've tried opening in various ways.
    Help please, I just cannot figure this out! What am I doing wrong?

    Not sure how much help this is, but since you're having problems with the layout, did you try deleting the layout file? MacintoshHD/users/username/Library/Application Support/Soundtrack Pro/Layouts
    BTW, I found a BKiLifeConfiguration.plist in the following path:
    MacintoshHD > Library > Application Support > ProApps > Internal Plug-ins > BrowserKit > iLife.bkplugin > Contents > Resources
    Do you find it there?

  • Can't log into Game Center even after my password has been reset Help please

    I have 2 gamecenter accounts, I tried logging into one last night but its telling me to reset my password which I have done but its still saying wrong password. Any ideas on what I should try next please? Oh I have a ipad 2 and all my software is up to date thanks

    Can anyone help please I have been able to download apps send and receive emails.. Just not log into Game Center has anyone got any idea what is going on please. Both Game Center accounts are on the same devise but that has been working up until now.....

  • Multiselect problem Help please!!

    Hi all,
    I am currently using Application Express 3.1.2.00.02 I have developed an online questionnaire with a multiselect list for one of the questions. The problem i am having is that i need each choice to be totaled up separately on the report generated.
    My table of answers looks like this:
    Column name e.g. (Question 9)
    Answer "Dog" "Cat" "Mouse" "Snake" (underneath column name Question 9 depending on what is selected).
    The reporting page would look like below:
    *(Column Question 9)* Count
    Dog 1
    Mouse 1
    Snake 1
    and for the question you could have another respondent who chooses similar of items on the multiselect, so their answer looks like this:
    Answer
    "Question 9" Dog
    "Question 9" Snake
    This would then start a new row on the reporting page like below which is not what i want:
    *(Column Question 9)* Count
    Dog 1
    Mouse 1
    Snake 1
    Dog: Snake 1
    But the report should look like this:
    *(Column Question 9)* Count
    Dog 2
    Mouse 1
    Snake 2
    The current SQLquery i am using is below:
    select "QUESTION 9",
    count(*) c
    from "P1 DQUESTIONNAIRE"
    group by "QUESTION 9"
    Thanks for your help and suggestions,
    'S'

    How to make sure your forum post will never be answered:
    1) Make sure your subject line is completely meaningless (i.e. HELP PLEASE!) and describes no part of your actual problem
    2) State that you are having "a few problems" but make sure to offer no details whatsoever what those problems are or what the symptoms are.
    3) Post large volumes of code instead of distilling the problem down to a compact snippet
    4) For extra points, make the code hard to read by refusing to make use of the "code" tag.

  • K8N Neo2-fx Ram problem Help please

    I have three ram(2x512MB single sided , 1x1GB double sided). Is there any way I can put them all on the motherboard? When I place them all the computer is not starting and it`s making a "beep" every 2-3 seconds. If i connect the 1GB double sided on the Dimm1(green) and the one 512MB single sided on the Dimm3(green) it`s working properly. Is there any way I can use all my ram at the same time. I`m desperate. Help please...  thank you

    Quote from: wodahS on 09-November-06, 05:55:17
    How can I put my computer facts under any post I am posting? I should make it my signature?
    That's the rule mate which you need to gives all your component in details including your PSU and Bios revision so that others can help you! Like what BOSSKILLER say it won't works with 3 DIMMS unless you purhased another 1 GB of RAM then it can solve your problem with 4 DIMMS or else with 2*512MB RAM. Make sure that you've lowered your HT to <=800Mhz as default is 1000Mhz. GD luck.

  • Hi, my iPhone 3GS has many problems. Please help if you can!

    Havent had my phone for even a full year yet, been nothing but problems. My iPhone will not ring or notify me when people call yet i get the missed calls on my phone after they call 10 times (which they are normally very frustrated by then). It is hard to hear me sometimes when I talk to others using this phone. I will all of a sudden cut out when they could hear me perfectly clear. Also I will be texting a message and I will type a whole message but it wont show up on the screen and after 2 minutes when it finally does its only part of the message. My camera only opens up some of the time. My switch just doesnt work. When you switch it to silent it wont work unless you hold your finger on the switch. My home button doesnt always work. I will be using an app and all of a sudden my phone will freeze and restart itself. I will lock my phone but it will not actually lock until 2 minutes after i press the button. Sometimes my screen gets stuck in a landscape position even my home screen and lock screen, kinda weird. Oh and i have had the problem recently where I will plug my charger in and it will charge on and off. It will charge and then after a few minutes it will say this charger is not supported and it will go back and forth. So i got a new charger and tried it to see if the problem was the charger and it still did the same thing. There are more little problems but these are the major ones. I know there is a lot but any help or suggestions are welcomed and appreciated! Thank you   Oh my phone has also spent most of its time in an otter box so not much damage to my phone. Thanks again!!

    Since you are still under Warranty, make appointment with Apple Genius and take iPhone to Apple for resolution of those problems.

  • Itunes has encountered a problem. help please?

    ok this is making me really angry. i am obsessed with itunes and now mine doesnt work. when i click on the icon a little box comes up saying:: itunes has encountered a problem and needs to close. we are sorry for the inconvience. if you were in the middle of something, the information you were working on might be lost. blah blah. and then if you click see what the data report contains it says--- this error report includes information regarding the condition of itunes when the problem occured; the operating system version and computer hardware in use- your digital product ID. which could be used to identify your license and the internet protocal address of your computer... and there's more..
    I NEED HELP NOW i'm desperate. it's really bothering me i've deleted my itunes three times completly off my computer and downloaded it again and the same thing comes up... help pleasee!!!??
    thanks so much
    ---I have the new version of itunes installed. and I uninstalled it by going into add or remove programs and deleted it completely off my computer. I reinstalled it by downloading the new version of itunes off the website.. also I'm not quite sure whether my itunes is external or secondary drive.. i'm thinking external..

    hi Alessia!
    actually, that's a good sign. the registry issues are tricky ...
    okay, let's try to cleanly remove all your itunes and quicktime program files and folders. use the full uninstallation instructions given here:
    http://docs.info.apple.com/article.html?artnum=93976
    and use the windows cleanup utility if you run into trouble.
    then download and save a standalone QT 7 installer to your hard drive. we'll run the installation from there. here's a link through to a standalone:
    Scott Patrie, "Installation hangs on "installing QuickTime"", 10:33pm Oct 7, 2004 CDT
    after you've got that installed, download and save a new itunes installer to your hard drive. then run the installation from there, skipping the QT part of the install when given the option.
    keep us posted on your progress.
    love, b

  • My ipod touch screen is cracked from the bottom left corner to the middle button, my button has recently stopped working and i was wondering if this has caused or has another problem occurred, please help me?!ha

    any help or suggestions? someone technical??

    Doesn't matter if the crack is causing the button to stop working not, that won't be covered under warranty.

  • I keep getting "itunes has stopped working" help please ,daughter is frantic to use xmas present

    Need a bit of help ,computer keeps saying "itunes has stopped working " and then "a problem has caused prog to stop working etc" when i follow links nothing happens and the same info comes up.Please help.

    This Apple article will help you isolate the problem a little -> iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    Does iTunes start in Safe Mode?
    Open iTunes in Safe Mode to isolate any interfence with plug-ins or scrpits not manufactured by Apple.
    Hold down the Shift and Control keys while opening iTunes. If performed correctly, you should see a dialog that says "iTunes is running in safe mode" before iTunes finishes starting up.
    After clicking Continue, determine whether the issue you were experiencing persists in Safe Mode.
    It would also be helpful if you can provide the Error Report from the Windows Action Center Reliabilty History. To view this go to Control Panel > All Control Panel Items > Action Center > View Reliability History under Maintenance. Double click the iTunes critical event and copy it into your reply.
    If you run into problems, see b noirs walkthrough in this thread -> Windows Apple Mobile Device

  • Possible line problems - Help Please?

    Good Morning,
    Been having a lot of problems with slow speeds and the Hub disconnecting recently. I suspect this is to do with the phone line as my setup has not changed since previous issues I had with internal wiring which I fixed with help from people on here...
    Anyway, my Hub is connected directly into the test socket and my stats are as below. This doesn't seem right. My noise margin seems very low and the number of errors and events seem rather high. My IP profile has been higher in the past and stable until a few weeks ago.
    I realise the connection is not 'stable' as it's been less than three to five days - I'm struggling to keep a connection for 24 to 48 hours at the moment without a reset so this is good for now!
    Any help from Mods or others much appreciated. Not much I can do at this end.
    Thanks,
    Dan.
    ADSL Line Status
    Connection Information
    Line state: Connectedppp0_0
    Connection time: 2 days, 08:27:20
    Downstream: 2.188 Mbps
    Upstream: 448 Kbps
    ADSL Settings
    VPI/VCI: 0/38
    Type: PPPoA
    Modulation: G.992.1 Annex A
    Latency type: Interleaved
    Noise margin (Down/Up): 2.5 dB / 20.0 dB
    Line attenuation (Down/Up): 61.8 dB / 31.5 dB
    Output power (Down/Up): 17.7 dBm / 12.3 dBm
    FEC Events (Down/Up): 178731265 / 1208
    CRC Events (Down/Up): 288943 / 1108
    Loss of Framing (Local/Remote): 0 / 0
    Loss of Signal (Local/Remote): 0 / 0
    Loss of Power (Local/Remote): 0 / 0
    HEC Events (Down/Up): 418976 / 3497
    Error Seconds (Local/Remote): 38442 / 1298
    Download speed achieved during the test was - 1.6 Mbps
     For your connection, the acceptable range of speeds is 0.4 Mbps-2 Mbps.
     Additional Information:
     Your DSL Connection Rate :2.24 Mbps(DOWN-STREAM), 0.45 Mbps(UP-STREAM)
     IP Profile for your line is - 1.75 Mbps

    as you are in the test socket already are you using a new filter?  tried changing the modem rj11 cable?  do you use a phone extension cable to connect to test socket?
    check this post for other ideas  uk sales 08007830056
    http://community.bt.com/t5/BB-in-Home/Poor-Broadba​nd-speed/m-p/14217#M8397
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • Short dump while activating process chain

    Please let me know the cause of short dump while activating process chain.. when trying to activate local process chains in metachain it is causing dump

  • Can anybody tell me how to extract sales value and cost value for an materi

    dear all, Can anybody tell me how to extract sales value and cost value for an material sold . All the values of cost value and sale values are getting  stored in bseg-wrbtr field . How to identify them uniquely. Or there is another way to find the s

  • Repair SQL Server 2008 R2 SP2

    Hi everyone,   Following an upgrade to SQL Server 2012 which didn't succeed, someone recommended that I repair my actual SQL Server 2008 R2 SP2 setup.  The actual setup I have, which btw is running without any problem, is the following: SQL Server 20

  • After refresh from Prod how to make sure source systems point to QA ECC sys

    Hi Gurus, We recently refrehed our qa with copy of prod,  The source system is still pointing to production source system. How to change this to point to pre-prod. Thanks. Best Regards, Suresh.

  • Help with side windows.

    Please dont answer with file, new layer!  I used to be able to make a new layer or layer mask from a window on the side.  Can someone say what this is called so i can pull that back up?  Thanks xD