IPod won't connect more than once

When I plug my iPod into my computer, my iTunes registers and connects and syncs. Perfectly fine. But I want to change some settings on my iPod, such as the album artwork and playlists, and whenever I try to sync it again, my iPod won't connect and my iTunes can't find it, even though its plugged in.
Help?

Typically when only one device can connect to the AirPort base station, it may be because it is not properly configured as a NAT router ... which is its default configuration.
One option is to perform a "factory default" reset on the AirPort, and then, try connecting one or more devices to verify that they now all get network/Internet access. Once verified, you can use the AirPort Utility to configure it per your networking requirements.

Similar Messages

  • PB won't start more than once without PMU Reset

    My son just got a hand-me-down G4 1.5Ghz 15" PowerBook at work. When he got it the battery would not hold a charge for more than about 5 minutes. We checked the serial number and it was part of the PowerBook battery recall so we requested a battery exchange from, Apple. The new battery arrived today and when he put it in, the PowerBook would not start up even on AC.
    He reset the PMU and it seemed to be OK but when the computer went to sleep he could not wake it up. He uplugged it and took out the battery but it will not restart. Also, the charge indicator on the AC adapter turned green after about 15 minutes but the battery indicator in the menu bar still says 0%. He pushed the test button on the bottom of the battery but no lights come on so the battery can't be charged. Even putting the old battery back into the PB won't let it restart more than once without resetting the PMU.
    While the old battery did not hold a charge at least the machine could be used and restarted without a PMU reset. Now it won't even do that.
    Anyone see this behavior on another machine? Any suggestions on what is wrong or how to fix it?
    Please help.
    Thanks,
    David

    It appears that deleting the com.apple.Powermanagement.plist file has resolved the restart problem. In fact. it looks like the old battery may now be charging properly. I still can't get the machine to start using the replacement battery.

  • IPod won't sync more than 22songs

    I have an iPod touch with sw her 2.1.1 and iTunes ver 8.my iPod used to sync fine,but after a recent motherboard change and subsequent windows vista reinstallation,after copying 22songs,iTunes hangs on my computer and iPod screen keeps showing "sync in progress"I tried leavin it connected for even hours but finally I have to cancel sync and close iTunes from windows task manager.I tried restoring the ipod and also reinstalling iTunes but it din't help.can some1 pls help me...

    it appears as though the problem is with the podcasts themselves. When I tried to upload them directly into my ipod I get an error on a run of about 6 of them that say they're not compatible with my Gen 2 Ipod. Weird, but the lsat few from recent days are working like they are supposed to. I can only suspect that the load to itunes is in error. Too bad itunes doesn't give you the same error report as when you try to get the podcast direclty over Wifi using the ipod itself.

  • Jinternalframe won't hide more than once.

    hiya,
    i have a jinternalframe and when i click the close button it hides, but if i show it again and then try to click the close button it doesn't hide. the following code demonstrates the problem - click open then the x to close the internalframe then open again and try to hide the frame. nb i am using jdk1.2.2, i'm not sure if it happens in jdk1.3, but i could really do with a workaround for this...anyone got one?
    thanks!
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JDesktopPane;
    public class Test extends Frame implements ActionListener {
        JButton openButton;
        JLayeredPane desktop;
        JInternalFrame internalFrame;
        public Test() {
            super("Internal Frame Demo");
            setSize(500,400);
            this.addWindowListener(new WindowAdapter() {
                                       public void windowClosing(WindowEvent evt) {
                                           Window win = evt.getWindow();
                                           win.setVisible(false);
                                           win.dispose();
                                           System.exit(0);
            openButton = new JButton("Open");
            Panel p = new Panel();
            p.add(openButton);
            add(p, BorderLayout.SOUTH);
            openButton.addActionListener(this);
            // Set up the layered pane
            desktop = new JDesktopPane();
            desktop.setOpaque(true);
            add(desktop, BorderLayout.CENTER);
        public void actionPerformed(ActionEvent e) {
            if ((internalFrame == null)) {
                System.out.println("making new frame");
                internalFrame = new JInternalFrame("Internal Frame", true, true, true, true);
                internalFrame.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
                internalFrame.setBounds(50, 50, 200, 100);
            boolean there = false;
            for (int i = 0; i < desktop.getComponentCount(); i++) {
                if (desktop.getComponent(i).equals(internalFrame))
                    System.out.println("already there.");
                    there = true;
            if (!there) desktop.add(internalFrame, new Integer(1));   
            internalFrame.show();
        public static void main(String args[]) {
            Test sif = new Test();
            sif.setVisible(true);

    By Default with JBuilder u have this internalframe and
    JDeskTopPane!!!
    it works just fine (closing and opening again)::::
    Why don't u work with independent classes like:
    JDesktopPane(1), several (JInternalFrame) ???
    // example JDesktopPane ::
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Desktop extends JFrame {
    BorderLayout borderLayout1 = new BorderLayout();
    private JDesktopPane desktopPane = new JDesktopPane();
    JMenuBar menuBar1 = new JMenuBar();
    JMenu menuFile = new JMenu();
    JMenuItem menuFileNewFrame = new JMenuItem();
    public Desktop() {
    enableEvents(AWTEvent.WINDOW_EVENT_MASK);
    try {
    jbInit();
    catch (Exception e) {
    e.printStackTrace();
    public void jbInit() throws Exception {
    this.getContentPane().setLayout(borderLayout1);
    this.setContentPane(desktopPane);
    this.setSize(new Dimension(600, 400));
    menuFile.setText("File");
    menuFileNewFrame.setText("New Frame");
    menuFileNewFrame.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    fileNewFrame_actionPerformed(e);
    menuFile.add(menuFileNewFrame);
    menuBar1.add(menuFile);
    this.setJMenuBar(menuBar1);
    static public void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    catch(Exception e) {
    Desktop desktop = new Desktop();
    desktop.setVisible(true);
    void fileNewFrame_actionPerformed(ActionEvent e) {
    InternalFrame frame = new InternalFrame();
    frame.setBounds(0, 0, 450, 300);
    desktopPane.add(frame, new Integer(1));
    protected void processWindowEvent(WindowEvent e) {
    super.processWindowEvent(e);
    if(e.getID() == WindowEvent.WINDOW_CLOSING) {
    System.exit(0);
    // example JInternalFrame ::
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class InternalFrame extends JInternalFrame {
    BorderLayout borderLayout1 = new BorderLayout();
    public InternalFrame() {
    try {
    jbInit();
    catch (Exception e) {
    e.printStackTrace();
    public void jbInit() throws Exception {
    this.setClosable(true);
    this.setIconifiable(true);
    this.setMaximizable(true);
    this.setResizable(true);
    this.getContentPane().setLayout(borderLayout1);
    }

  • Since I updated to iCloud, Mail on my MacBookPro 10.6.8 has been unable to connect to MobileMe more than once or twice per day. Mail on my iPhone 4 has no problems. What's wrong?

    Since I updated to iCloud, (which may or may not be related) Mail on my MacBookPro 10.6.8 has been unable to connect to MobileMe more than once or twice per day. Mail on my iPhone 4 and my old iMac has no problems. When there is no service a yellow warning triangle appears adjacent to the Inbox and Connection Doctor reports,"Trying to log into this MobileMe IMAP account failed. Verify that username and password are correct."  Since it does fetch Mail from time to time they cannot be wrong.... can they? Should I update to 10.7 and if so what does that entail?

    You have been using MobileMe's email settings, which sometimes continue to work for a time after migration but then get turned off. iCloud's mail server settings are different. Strictly speaking Lion 10.7.2 is required for iCloud, and on that Mail is set up automatically.
    Snow Leopard cannot access most of iCloud's facilities, however you can set Mail up manually to access your email. The method is described here:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudmail.html
    The situation with iCloud and Snow Leopard is described in detail here:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudSL.html

  • TS1468 I am having trouble with two cover flows duplicating themselves more than once, is there anyone out there that can help me with this, they are not duplicated in my itunes library, just the ipod.

    I am having trouble with two cover flows on my IPOD, duplicating themselves more than once, they haven't duplicated themselves in my Itunes library, just the ipod, could anyone have any ideas on how I could fix this problem. I have tried so many times, even if I restore the ipod, it still does the same thing. Please if possible email me at [email protected] with any suggestions.

    Aha! I have sorted it.
    For those with similar problems, the solution is this:
    Macintosh HD > Library > Audio > MIDI Drivers
    Then delete DigiDioMidiDriver.plugin

  • Why does 1 cd appear more than once on the ipod

    Hi
    I have a Classic ipod and use Windows 7; I have a couple of items which are appearing more than once on the ipod but only once on the laptop

    Hi rhduff,
    Welcome to the Support Communities!
    The following article will help you with this.
    Follow the instructions to manually sync your iPad, and remove any songs that you don't want.
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12113?viewlocale=en_US
    I hope this information helps ....
    Have a great day!
    - Judy

  • Ipod nano won't charge more than 20% or so

    my 6 mos old nano won't charge more than 20% or so - jsut started this weekend when i ran a half marathon and it ran out of juice before i could get it charged. only time it's ran out of juice.
    plug it in to everything i have, and can only get 20% charge. i wear it on an armband, and it's hot - could that be it? Or is the battery just worn out?
    Went through all the stuff i could find online to try...apple site and others.
    i'm kind of addicted to running with my nano - please help...

    *Went through all the stuff i could find online* to try...apple site and others.
    Please describe _*in detail*_ all you have attempted to do in order to resolve the issue.
    Have you called iPod technical support: 1-800-APL-CARE (1-800-275-2273), considered taking the iPod to an Apple Store or an AASP?

  • Connecting more than one ipod to one mac computer

    Can anyone please advise me on how I can connect more than one ipod to just the one mac computer. I need to set up 3 ipods to work on the one mac computer but each with there own itunes library. thanks

    When the iPods belong to two users, there are a couple of recommended methods for using more than one iPod on a single computer. Method one is to have individual Mac or Windows user accounts which by definition would give you completely separate libraries. Each account has it's own iTunes folder, Library and iTunes Music folder and you load it with CDs etc just as you did with your original one. Each iPod can be set to update however the owner chooses, sync all, manual or sync specific playlists.
    Method two is to set your preferences so that either one or both iPods get updated with only certain playlists within one library. Have a look at this article and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer
    Another option when using a single library is to set one or both of the iPods to manual update: Managing content manually on iPod
    Choosing the update option "automatically update selected playlists only" (called Sync Music - Selected playlists in iTunes 7) allows you to create a playlist specifically for each iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used by the other iPod. Make your playlist a Smart playlist and limit the size to just below the advertised capacity of your iPod ( for example, around 3700MB for a 4GB or 1800MB for a 2GB Mini or Nano). You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes

  • Running the VI more than once, won't populate the array correctly!

    I have found something pretty weird while I was trying to do the following:
    I have an Array to wich I want to append a new set of data from two sources. To do
    this I found two different ways:
    1. I can take the array and append every element (from the sources of new data) to
    the array.
    2. Or, I can create a new array, and append it to the previous one.
    Every of those solutions is ilustrated in the enclosed VIs. But the second one
    doesn't work correctly. If we run it just once, it will display the correct data,
    but if we run it more than once, it will show the cells of the appended data
    empty!!!
    How come this happens? It seems I'm missing something very basic and i
    mportant.
    Thank you for your time and help.
    Regards,
    JAVIER
    Attachments:
    1_This_is_the_working_solution.vi ‏20 KB
    2_Why_does_this_doesnt_work.vi ‏24 KB

    Hi,
    actually you don't need to add elements continiously to each other or to the array.
    The basic solution is to form the appropriate array and insert it into your array.
    I have made the example.
    Good luck.
    Olrg Chutko.
    Attachments:
    Solution3.vi ‏20 KB

  • How do I repeat the same row more than once in report 10g

    How do I repeat the same row more than once in report 10g
    So I can print the bar code more than once
    in report;
    Edited by: user11106555 on May 9, 2009 5:50 AM

    GREAT THAN X MAN
    It is already working, but with the first ROW
    select ename from emp
    CONNECT BY ROWNUM<=5
    ENAME
    SMITH
    SMITH
    SMITH
    SMITH
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER
    BUT I want this result
    Item1
    Item2
    Item3
    to
    Item1
    Item1
    Item1
    Item2
    Item2
    Item2
    Item3
    Item3
    Item3

  • Hello! I have in my home 2 iMac, 2 iPad, 2 iPhone, and 1 air base extreme. I don't succeed to connect more than one divice from similar type. I tried everything what I knew. I build another network, etc...

    Hello! I have in my home 2 iMac, 2 iPad, 2 iPhone, and 1 air base extreme. I don't succeed to connect more than one divice from similar type. I tried everything what I knew. I build another network, etc...
    So only one imac, only one ipad..and so on simultain.
    More over, all the divices are conect through wifi to air base but are not receiveing internet as i told above.
    I need to disconnect one device to have internet on the second one from the same type!
    Could somebody help me?
    Many Thnaks,
    dan

    If your network configuration is:
    Cable modem > (Ethernet cable) > [WAN] AEBS > (wireless) > Macs, then
    AirPort Extreme Base Station Setup (AEBS) w/High-Speed Cable Modem
    Modem/Router Power ReCycling
    - Power-off the Cable modem, AEBS, & computer(s). (If possible, leave the modem off overnight.)
    - Power-on the Cable modem; Wait at least 30 minutes.
    - Power-on the AEBS; Wait at least 5 minutes.
    - Power-on the computer(s)
    Perform a "hard" reset of the AEBS.
    - (ref: http://docs.info.apple.com/article.html?artnum=107451)
    Setup the AEBS
    With the network components powered down, set up the AEBS, using the AirPort Admin Utility, connect your computer directly (using an Ethernet cable) to the LAN port of the AEBS, and then, try these settings:
    AirPort tab
    - Base Station Name: <whatever you wish or use the default>
    - AirPort Network Name: <whatever you wish or use the default>
    - Create a closed network (unchecked)
    - Wireless Security: Not enabled
    - Channel: Automatic
    - Mode: 802.11b/g Compatible
    Internet tab
    - Connect Using: Ethernet
    - Configure: Using DHCP
    - WAN Ethernet Port: Automatic
    Network tab
    - Distribute IP addresses (checked)
    - Share a single IP address (using DHCP & NAT) (enabled)
    Once you verified that you can get Internet access for all of your computers, you should secure your wireless network. To do so, I suggest that you make these changes:
    AirPort tab (optional)
    - Create a closed network (checked)
    Change Wireless Security
    - Wireless Security: WPA Personal
    Base Station Options - WAN Ethernet Port
    - Enable SNMP Access (unchecked)
    - Enable Remote Configuration (unchecked)
    - Enable Remote Printer Access (unchecked)
    Wireless Options
    - Transmitter Power: 10%
    Access Control tab (optional)
    - + <add the computer(s) that will access this wireless network>

  • Hp laserjet pro 200 My won't print more than 1 file at a time

    My hp laserjet pro 200 m251 won't print more than 1 file at a time. Any ideas?

    Hi @nocastaway,
    I see by your post that you can't print multiple copies. I can help you with this.
    From the application your printing from, go to File, Print, Number of copies select 2. Uncheck Collate. You can now change the number of copies. Collate should now stay unchecked.
    Try printing the multiple page document again.
    You might have to disable all the startup items, to see if there is another program causing this issue.
    How to use MSCONFIG. Click on the Startup tab and disable all.
    Test the printer.
    Then go back in and enable all from the Startup tab.
    Download and run the Print and Scan Doctor if you are still having issues. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    What applications have you tried?
    How is the printer connected? (USB/Ethernet/Wireless)
    What operating system are you using? How to Find the Windows Edition and Version on Your Computer.
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    If you need further assistance, just let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Performance... Why a function column in a view is executed more than once...?

    Why a function column created inside a view is executed more than once when called more than once?
    EXAMPLE:
    create or replace view aux1 as
    date_column,
    any_function(date_column) column1
    from any_table
    create or replace view aux2 as
    column1 c1,
    column1 c2,
    column1 c3
    from aux1
    select * from aux2
    It will execute 3 times the function any_function... logically the value will be the same for all columns...
    I understand why!... are 3 calls... but...
    Why not to create a "small" verification and if the function column was execute replace the second, the third... value? ... instead of execute 3, 4... times...
    tks
    Braga

    Actually, this is more than a performance issue. This is a consistency problem. If the function is NOT deterministic then you may get different values for each call which is clearly not consistent with selecting 3 copies of the same column from a row. Oracle appears to have fixed this in 9i...
    Connected to:
    Oracle8i Enterprise Edition Release 8.1.7.2.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.2.0 - Production
    create view v1 as select dbms_random.value(1,100) r from dual;
    create view v2 as select r r1, r r2 from v1;
    select * from v2;
              R1           R2
              93           74
    Connected to:
    Oracle9i Enterprise Edition Release 9.0.1.3.0 - Production
    With the Partitioning option
    JServer Release 9.0.1.3.0 - Production
    create view v1 as select dbms_random.value(1,100) r from dual;
    create view v2 as select r r1, r r2 from v1;
    select * from v2;
              R1           R2
              78           78Richard

  • Can't connect more than one device.

    I just bought an Airport Express 2 gen from a friend and I have two issues: I tried to reset it to factory settings and could not do it. Tried holding the reset button for 10 secs, unplugging and plugging back in while holding the reset button, holding the button for a longer time and nothing worked. I had no choice but to create another network. Once created, I can't connect more than one device. If I have my MacAir hooked up the network and I try to get my Ipad in, the minute I type the network pass in my Ipad, a screen pops up where I have to log in with my internet provider account. When I do that, it will connect, but my MacAir will disconnect automatically.
    Appreciate any help!

    Things are a bit different with the 2nd Gen AirPort Express and other newer AirPorts.
    A Factory Default Reset is now the same as what was previously known as a "Hard Reset".
    Power up the AirPort Express and let it run a few minutes.
    Hold in the reset button on the Express for 10 seconds
    Release the reset button and allow a full minute for the Express to restart to a slow, blinking amber light
    If the Express is operating correctly, it will be back to factory default settings at this time.
    If you try the reset a few times and the Express will not return to default settings, the Express is defective.

Maybe you are looking for

  • Display Month

    hi all how to display month in text-item and change at it every month.eg. this is 9 month after 30 days it change into 10 and after 10 it show 11.. sarah

  • Can you set a project wide time limit?

    I know that you can set a time limit for each question, can you set a time limit for the entire project?

  • Can we generate a report on Audit History? (CRM 2011)

    Hi, I can see the Audit view in the database but every record is holding only Old value . No idear from where crm is pulling up the new value? Can any one please let me know the solution? Thanks.

  • Programming and EOS 7D

    Hi all I would like to connect to my EOS 7D using a laptop, and control its settings, and program its shooting, using a programming language. I know that this is possible but I typically only find information that has jumped many miles past the initi

  • A copy of EVERY photo we have in iphoto is in the TRASH? HELP!!

    We have 75,806 photos in iphoto and the exact same number in the trash can in iphoto. When we import more photos on a daily basis, a copy is put straight in the trash bin!! We are too scared to delete the trash can....!!! help! We have iphoto 11 and