Skip to main content

iPod Nano Watch losing NikePlus Runs

I've been struggling with Apple's stupid iTunes losing my NikePlus runs for MONTHS now.   I've Googled my butt off, called Apple, went to the Apple Store, and spent on the order of 20 or 30 hours trying to resolve my iPod Nano Watch losing NikePlus runs.

I recently wrote to NikePlus support to ask for help.  They mentioned "re-linking" and "re-uploading" my runs.   They thought that Apple would have told me about this, but Apple didn't.

Anyway, after I had those two key terms, I did some Googling.   Here's what I found at:

https://discussions.apple.com/thread/595567?start=0&tstart=0

Disclaimer:  This may not work, so do so at your own risk.   It worked for me though.   Glad the NikePlus people knew better than the Apple people!

That said, here goes:

PRELIMINARY STEPS:
Make sure your Mac shows your file extensions. (If you don't even know what those are don't go any further.)

(Not sure if the next bit is necessary but it's what I did because I did not want ANY auto linking to happen! )
Connect your Nano to your computer. Go to Ipod options and UNCHECK the the box for the auto upload to Nike+. Also unckeck the box for auto opening itunes when Ipod is connected. Close itunes. Disconnect Ipod then reconnect.


Use this application "Visibles"http://www.versiontracker.com/dyn/moreinfo/mac/14722 to make the invisible files visible then go from there.

THE ACTUAL FIX:

1. Open ipod as a storage device. (Ipod_Control is a hidden fiolder, so you need to make it Visible before you can do any of this. See above!

2. Look for the folders
Ipod_Control >Device>Trainer>Workouts>Empeds>4H626KXBVSX>Synched
( I archived the Workouts folder and stored it on my hard-drive, just as a back-up.)

3. Find the .xml files ( looks like 2006.... blah, blah.xml) that are missing from your Nike+ account. Drag them back to the folder "Latest" 

Incidentally, I didn't use any application.... I used Terminal, as so:
John-Bebos-MacBook-Air:iPod_Control johnbebo$ cd Device/Trainer/Workouts/Empeds/John-Bebos-MacBook-Air:Empeds johnbebo$ ls
nikeinternal
John-Bebos-MacBook-Air:Empeds johnbebo$ cd nikeinternal/
John-Bebos-MacBook-Air:nikeinternal johnbebo$ ls
lastWorkout.xml latest preferences.xml settings.plist synched
John-Bebos-MacBook-Air:nikeinternal johnbebo$ cd synched/
John-Bebos-MacBook-Air:synched johnbebo$ ls
2013-09-12 17;15;25.xml 2013-09-15 07;52;30.xml 2013-09-21 15;09;26.xml
2013-09-14 07;26;22.xml 2013-09-19 12;34;19.xml 2013-09-23 05;21;34.xml
2013-09-14 15;38;05.xml 2013-09-20 09;43;25.xml 2013-09-24 15;26;05.xml
John-Bebos-MacBook-Air:synched johnbebo$ mv *.xml ../latest/

4. Open itunes and see if ipod is showing there. if not, eject ipod (if it's still showing as storage device), then disconnect and reconnect.

6. Ipod should show in itunes. Go to ipod options and check the auto uploud to Nike+ box. (Contrary to what it says on Apple's help page, there is no manual upload option.) Click OK.  

7. The upload of your missing runs should then happen. (Mine did.)

8. You should get asked if you want to go to Nike+. You should see your missing runs when you get there.

Note:   I had to visit the NikePlus site when iTunes prompted me to visit it to make the runs upload.   I tried it once, it looked like they uploaded, but I clicked "Don't Visit" the site when prompted by iTunes... This didn't seem to upload my runs.  The 2nd time I did it I clicked "Visit" and then my runs were there.   Not sure if there is a correlation, but those were the symptoms.

Comments

Popular posts from this blog

HP c6180 Printer and Vista

Hp c6180 driver issues with Vista Home Premium My wife has a Vista Home Premium laptop, and the HP C6180 Photosmart printer keeps disappearing from her available printers.  The only way I've found to fix the problem is to reinstall all the HP software. When I do this, I have to download the (large..507M software from HP, or reinstall the printer (ONLY the printer, not the scanner) with the installation disk, as the drivers are not discovered with a "Windows Update" setting.  My guess is that is because HP doesn't like people to install only the printer driver, which would be easy, but they want folks to install all their crapware as well, so they are withholding the drivers from the on-line Microsoft printer database.  So keep your installation CD!  I've also found that unless I install everything on the CD or in the Full Version download (HP Customer Participation Program, HP Imaging Device functions, HP OCR SW, HP All-In-one SW, HP Photosm...

atftpd vs tftpd-hpa

Recently I was trying to tftp files from a Windows computer to a Kali box.   One version of Windows worked, but another didn't.    After much troubleshooting, here were my symptoms: I could tftp a file from-to any Kali box from-to another Kali box I could NOT tftp files to a specific Windows 7 box from any Kali box I could NOT tftp files to a Chrooted-Ubuntu-Chromebook box from a Kali box After MUCH troubleshooting, going through every setting in atftpd, it seemed like it literally was a client OS problem.  Different clients simply would not download files---unacceptable. Thus, I switched to tftpd-hpa.   To install: apt-get install tftpd-hpa files go to/come from /srv/tftp, but it needs to be a tftp user. Thus, I needed to: chroot -R /srv/tftp Also, if you want to be able to put files ON the tftp server (from a client), you need to modify /etc/default/tftpd-hpa: change "TFTP_OPTIONS="--secure"  to "TFTP_OPTIONS="--secure --create" ...

Temper Temperature monitor on a Beaglebone Black

Beaglebone Black as a temperature monitor: Recently I wanted to monitor the temperature of my shed.  I thought I'd use a small computer such as a Raspberry Pi or a Beaglebone or Odroid. My Raspberry Pi boxes were all in use, so I grabbed my Beaglebone, which was doing nothing. I flashed it with the  Debian   9.3   2018-03-05   4GB SD   IoT   image, but that seemed like it was running lots of bloatware and the ethernet interface wouldn't take a static IP with /etc/network/interfaces. So I went with the  Debian   9.3   2018-01-28   4GB SD   LXQT   i  image instead.  I still had the same problem, that lots of junk was running, and I couldn't configure my interface by modifying /etc/network/interfaces So my first step was to get rid of all the bloatware.  If you're using a Raspberry Pi or something, you can skip this and just go to the second step below STEP 1--Remove Blotatware from Beaglebone Black...