I-pod still not showing up

i have done everything that has been suggested by the website as to how to make my ipod appear and it still hasn't. what's wrong and how do i fix it??

I have the ipod nano (the new colorful ones, i have 8GB)
I have tried everything but it wont show up on my cp. I installed itunes 8 on my fathers Laptop and it sync then but it doesnt work on my cp.
Wat do i do?

Similar Messages

  • I purchased and in-app download and have a receipt but it is still not showing, so where is it?

    I purchased an in-app download for Little generals and have a receipt, but it is still not showing up. Ive tried all the usual sign in then back out...shutting on and off but none of this works. The file just seems that it does not exist even though they have already charged my credit card. So, WHAT GIVES???
    PS: And the people on the other end of the phone line seem to be completly clueless about their own products..

    If you don't have the Firefox button, you're using the classic view. To restore the new view of Firefox (Changed in Version 4):
    * View > Toolbars > Menubar [Uncheck]
    In Firefox 6 you can use this to clear your history/other offline content:
    Click on the Firefox button on top left part of your browser:
    * History > Clear Recent History
    There you can select what you want to clear.
    If you want to see the menu bar you can press alt on your keyboard so you can see file/view/...
    Also for activating it to always be there follow this (Classic view of Firefox):
    * Firefox > Options > Menu Bar
    Don't forget to hit the 'Solved it' button if this solved your problem so the topic will be closed.

  • I just got my iPod touch, I updated m iTunes and my iPod is still not showing up on iTunes, its giving me the iPod can't be used because the required software is not installed even though my iTunes is up to date

    I just got my iPod touch, I updated my iTunes and my iPod is still not showing up in iTunes. It is telling me the required software is not installed even though my iTunes is up to date

    http://support.apple.com/kb/TS1369
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • Why is i pod still not syncing unknown error occured 13019

    why is my i pod still not synced unkown error occured 13019???

    No need to shout!  Not good manners.  Typing in caps is considered shouting. 
    Just click on the link I posted.

  • Istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    istalling third party instruments.. i have tried to go to application support and putting them into the sampler but they are still not showing up.. can someone help me

    Hi
    So these are EXS24 Sampler Instruments?
    If yes... the .exs Instrument files need to go in
    Library:Application Support:Logic:Sampler Instruments
    Or
    <User>:Library:Application Support:Logic:Sampler Instruments
    CCT

  • I have downloaded iTunes 11.1 but iTunes radio is still not showing up, why is this happening?

    I have downloaded iTunes 11.1 but iTunes radio is still not showing up, why is this happening?

    Hello there, jrodxo125.
    The following Knowledge Base article provides some great information about iTunes Radio:
    About iTunes Radio
    http://support.apple.com/kb/HT5848
    Keep in mind it is currently available only in the US. Additionally:
    To use iTunes Radio, you must have iOS 7 or OS X Lion v10.7 or later, iTunes 11.1, or Apple TV 6.0 or later installed on your device or computer as well as an Apple ID for use in the iTunes Store.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • To download file but still the Save Dialog box still not show? Please help.

    Hi All,
    Below is my full code to download file but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this??? What is lacking...
    Thank you in advance.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • I-pod does not show up in i-tunes

    I-pod does not show up in I-tunes

    iOS: Device not recognized in iTunes for Mac OS X
    Or
    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or                     
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • Ok so my ipod touch is saying theres no music on it but when i plug it up and get on itunes it says theres music on it but its still not showing up on my ipod. help anyonee??

    ok so my ipod touch is saying theres no music on it but when i plug it up and get on itunes it says theres music on it but its still not showing up on my ipod. help anyonee??

    Have you tried resetting your iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    Next would be to unsync the music and then try syncing the songs to the iPod
    - Last would be to restore from backup.

  • My iphone 4 screen has gone blank and its still on it vibrates when i put it on charge ive tried turning it off and the screen is still not showing anything please help

    my iphone 4 screen has gone blank and its still on it vibrates when i put it on charge ive tried turning it off and the screen is still not showing anything please help

    Hi Ellen,
    Welcome to Apple Support Communities.
    It sounds like your iPhone 4 has a dim or blank black screen but responds to some commands like enabling vibrate. I understand this may be a frustrating situation, but the troubleshooting suggestions in the article below will help you solve the issue.
    Get help with the screen on your iPhone, iPad, or iPod touch - Apple Support
    If your screen is too dim, too bright, or you see only faint images
    Try to adjust the brightness. If the screen doesn’t respond when you adjust the brightness, open several apps to make sure it’s not an issue with only one app.
    If you have a screen protector, try removing it. Try removing your case if it includes a screen protector.
    If you see the issue in multiple apps, restart your device.
    If restarting doesn’t fix the issue, restore your device.
    If you still see the issue after you restore, contact Apple Support.
    Take care,
    -Jason

  • Installed MySQL ODBC, system DSN configured and working, provider still not showing in SQL 2005 provider list

    As per the title, really.
    I need to fetch data periodically from a MySQL DB. Installed the 5.1 MySQL 32bit ODBC driver onto the SQL server, configured and tested the DSN, all fine.
    Provider still not showing in the list in Management Studio.
    Can anyone offer any advice? is it a simple case of restarting services? I haven't tried that due to the server being in production.

    Hello,
    Is this a 64 bit SQL Server? For a linked server you can only use OleDB data provider, have you also installed OleDB for MySQL? If not, then you have to use the ODBC OleDB provider together with a System DSN.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Airport Extreme still not showing up in Airport Utility

    So after my own router wasn't working, a family member passed their Airport Extreme down to me and cited Apple's extremely easy set-up. Plug in the power, plug in the ethernet cable, then we should be good to go.
    The green light is on (not flashing) but when I create a new network, the IP shows up but it says that it cannot connect with the internet. Then I tried to see if it would be found using Airport Utility. It's been 15 minutes and it's still not found. Internet in the house is working just fine (using roommate's connection now) but I'd like to get this set up ASAP.
    What are the problems here and how can they be solved?
    If it helps any, I'm using last year's Macbook Pro model and the Airport Extreme gen 5.

    If AirPort Utility looks like the following, click the button at the upper left - the one labeled "Other Wi-Fi Devices". Determine if it appears in a dropdown menu:

  • Spiceworks device view still not showing photos of assets?

    Hi, any progress on the issue of Device View not showing photos of devices? I found a few old threads on it but couldn't find anything updated. I'm on the latest version of Spiceworks 7.4.00070 and it looks like this:
    I've had this problem since I first installed the app. It's only with the latest release that the old OptiPlex 755's started to show pictures, anything newer than that model just gives a generic icon. Obviously not a crucial issue, but would be nice if it could be fixed! :)
    (Also, my HP 3525 printer is only detecting with 256MB when it actually has 1GB of memory, but this is also a minor issue, haha)
    Thanks!
    This topic first appeared in the Spiceworks Community

    I have MS 365.Having trouble with OneDrive for Business (ODFB). Converted all my files fromolder versions to Office 2013.The ODFB filehad a Red X in front of it. I went through each folder and changed file namesand removed symbols like #. I had to cut and paste some files and delete theold one.No matter how much file updates the Red X never left.Some files have the Green check mark, but others had the Blue circle. (PS which is way toosmall and similar too green, so hard to see)So I removed all the files and started adding them one by one which is tedious. Still allthe files don’t have the green check mark.So I removed all the files that had the Red X.But still have the blue cross. I also have ODFB the little icon on my toolbar. It says ‘syncing’ Last night is had 470 files. This morning it was still syncing the same amount. I removed...

  • HT1819 latest podcast still not showing after a week!

    How do I get help with apple???  It has been a week and still no show on my home page.
    Yes I know subscribers can get the show  but not new people who can't see that a new show is there.
    Who do you appeal to?
    Thank you for your help
    Greg B

    Thanks Roger, can you tell me where you are getting this information? What you are saying my feed looks like is nothing like what it looks like. You can find the original xml file at www.ourplacechurch.com/podcasts_itunes.xml. This is the file the feedburner points to.
    The categories (there are two, both with subs) in my xml file are coded as follows:
    <itunes:category text="Religion &amp; Spirituality">
    <itunes:category text="Christianity"/>
    </itunes:category>
    <itunes:category text="Society &amp; Culture">
    <itunes:category text="Philosophy"/>
    </itunes:category>
    I do not have Steve Brooke in my author tags. My author tags look like this:
    <itunes:author>Our Place Christian Church</itunes:author>
    My itunes image is coded as follows:
    <itunes:image href="http://www.ourplacechurch.com/images/OURPLACE-1400x1400.jpg" />
    My copyright tag looks like this:
    <copyright>2012 Our Place Christian Church</copyright>
    What am I doing wrong?

  • TS1591 I followed all the steps and everything but my ipod is still not showing up at all. Help Please!!!

    I have looked at everyones comments and everything.  When i plug in my ipod the usb works and everything because my ipod is charging.  It will not show up anywhere in iTunes at all. Anyone help please?!

    Have you tried another cable and USB port?
    If you have OSX 10.6.8 on the computer did you look at the Additional Information paragraph of the article you cited?
    Try on another computer to help determine if yo have an iPod or computer problem

Maybe you are looking for

  • Loading split data with sqlldr

    Hi, My table has got the following format: TABLE tbl1 ( col1 VARCHAR2(10), col2 VARCHAR2(10), col3 VARCHAR2(10)) I receive a file which data I import into my above table tbl1 using the sql Loader and the control file has the following: LOAD DATA APPE

  • Unable to Activate Screen Buttons on Secure Web Sites with Safari 5.0.2

    I often pay bills online with secure sites, but today I was unable to complete any of those actions. The problem was that I could not produce the desired action when I clicked on action buttons (associated with secure emails in a list), such as SEND

  • Older Software Question

    I have some older software (Creative Suite Premier from 2006).  I have been using it without issue for the most part but am now looking to either load it onto a new computer or upgrade to a cloud version.  Is my only option to sign up as a new custom

  • Change format: jpeg to jpg

    I need to change the format of some photos from jpeg to jpg; not change the extension, but actually change the format.  It's for work and it has to be changed or it won't upload.

  • OPA Case studies / scenarios

    Being very new to OPA I am researching case studies or scenarios of OPA implementations in the private sector, particularly where is was integrated with Oracle HR and Oracle Payroll. I will appreciare it if anyone can point me in the right direction.