Success at last!

As you are probably all aware, for probably two years I have
been trying to get
my head around php and MySQL, primarily with the intention of
making a better
program for a web site photo album.
I have looked at many sites prepared using commercial
programs, but none took my
fancy. My main objections to them all were:
1. They all used a single layout for all pages. This was
generally far
too cluttered with distracting and largely irrelevant
information, so that there
was very little space to display the photograph.
2. They invariably had only a single level of indexing,
generally with
a row of thumbprints at the top of the page, and a single
slightly larger main
photograph, and almost invariably you had to move the mouse
all over the place,
and often scroll the page up and down, to move from one image
to the next.
3. Most were as slow as a wet week.
I wanted:
1. Multiple level indexing.
2. A simple uncluttered page, with the largest possible
image, without
having to scroll the page.
3. The ability to scroll from picture to picture, or menu to
menu,
without having to move the mouse.
4. A simple way to insert or delete images, and to change
the order in
which they appear.
I already have quite a large photo album which meets these
requirements, but
every photo is displayed in its own page. Setting up a new
album was a lot of
work, and once it was set up it was effectively impossible to
modify the format
of the existing pages.
The more I thought about it, the more I came to the
conclusion that a database
was not the answer to this application. Two weeks ago I
wrote:
".... but if I wait till I get a database set up it looks as
if I'll be lucky
to have it done by Christmas."
Murray kindly offered to help, and I spent a week trying to
clarify my ideas.
I decided that the best answer was to use a series of text
files to specify
which photos should be shown, and in what order. I worked out
a rough format,
and a week ago I tried to write a php program which would
automatically convert
a sample Word file into the desired format, and add a heading
containing
pointers, etc.
I got this working much sooner than I expected, so I decided
to try the real
thing. I got a preliminary version working to day, and you
may care to have a
look at it:
http://www.corybas.com/Albums/07_Europe/Intro.php
The home directory for my albums is called 'Albums'. This
contains the program
files, and a short text file listing all the subdirectories.
Below this is another directory for each individual album --
for example
07_Europe. Each individual directory contains an introductory
page 'Intro.php',
a file 'Main_ndx.txt', listing the photos to be shown on the
top-level index,
and 'Slide_ndx.txt', which lists all the photos to be shown,
together with their
titles, in the appropriate order.
The main index has a sample photo for each block of 16
photos, together with
short descriptions of the groups. There are 6 photos on each
page.
Below this is the subindex, which shows thumb prints for all
the photos in the
album, with 16 photos on each page.
Finally there are the photos themselves. These are the
maximum size which can
be shown on a 768 by 1024 pixel screen, with the given screen
layout, and are
displayed without any distracting extraneous information.
Apart from the introductory page, all the pages are the same
size, and have the
navigation arrows in exactly the same place.
You can scan through the albums, backwards and forwards, at
any level, and you
can drop to the level below by clicking on any of the thumb
prints. At present
you can only move from one album to another at the top level,
but eventually you
will be able to do so at any level.
At present the albums contain only enough photos to enable me
to test the
program, and the titles are very scrappy. The top-level data
file lists several
albums which have not yet been converted, so you will get an
error message if
you try to scan left from the first album. I did this
primarily to enable me to
test the error handling procedures.
At present the procedures for locating a given image are
fairly primitive, but
the performance I get is excellent. Although the photos are
relatively large,
my program takes an average of three seconds to load each
picture.
By contrast
http://www.wildimages.biz/wi_gallery-wildlife.php
takes an average
of 10 seconds to load each page, and
http://www.2010vancouverphotos.com/Index.php?spgmGal=BC%20Moments,
takes about
25 seconds. I realise that some or all of the difference
could be explained by
propagation delays across the Pacific, and I would appreciate
any comparisons
from your side.
The whole program occupies about 25KB, with another 5-10KB
for each set of data
files. Because the individual albums are relatively small,
they are fairly
easily easy to manage, but the system can be extended
indefinitely without
degrading performance.
I would be would be very grateful for your views on this
album, and any bug
reports. You can contact me privately using the yellow button
in the bottom
right hand corner of the introductory page.
Clancy

Hi Kim,
Thanks for the comments.
I looked at that web site (yours?) and thought "yes, it is
very fast, but they
are very small images". Then I downloaded a few samples and
noticed that two of
them were 400K bit maps. I get the impression that the site
is in Scandinavia,
and if so I am amazed that I can download these files in a
second or so.
Even if they were cached locally (which I doubt) this would
still be a very good
performance, so I don't know what is going on. I don't think
that there is any
substantial degradation in performance in unpacking JPEGs,
but as these 400K
file shrink to 20 to 30KB as JPEGs I would have thought it
would be well worth
doing, if only to save space on the server.
I had another look, and it takes just over one second to
download each image.
Some sets load faster than others, but I don't know whether
it is the bit maps
or the others. I had another look at my site, and my images,
which are
typically 450 by 600 or 720 by 540, with lengths of 50 to
150KB seem to take
about 2.7 seconds to download, with no noticeable difference
between the ones
with individual pages and the ones referenced via the
datafile. It appears that
my dirty procedures are fast enough, at least for this size
of album.
Clancy
>Hi Clancy,
>
>Looks nice and seem to work fine. But if it's faster than
other
>scripts/solutions that am not sure about. If you look at
this page
>
http://lazur.dk/inspiration.php
do you then think the images loads
>faster/slower than your solution?
>
>The beauty of dynamic stuff is that you can get the
solution *you* want
>and don't have to relay on others ideas etc :)
>
>Have fun
>
>Kim
>
>Clancy skrev:
>> As you are probably all aware, for probably two
years I have been trying to get
>> my head around php and MySQL, primarily with the
intention of making a better
>> program for a web site photo album.
>>
>> I have looked at many sites prepared using
commercial programs, but none took my
>> fancy. My main objections to them all were:
>>
>> 1. They all used a single layout for all pages. This
was generally far
>> too cluttered with distracting and largely
irrelevant information, so that there
>> was very little space to display the photograph.
>>
>> 2. They invariably had only a single level of
indexing, generally with
>> a row of thumbprints at the top of the page, and a
single slightly larger main
>> photograph, and almost invariably you had to move
the mouse all over the place,
>> and often scroll the page up and down, to move from
one image to the next.
>>
>> 3. Most were as slow as a wet week.
>>
>> I wanted:
>>
>> 1. Multiple level indexing.
>>
>> 2. A simple uncluttered page, with the largest
possible image, without
>> having to scroll the page.
>>
>> 3. The ability to scroll from picture to picture, or
menu to menu,
>> without having to move the mouse.
>>
>> 4. A simple way to insert or delete images, and to
change the order in
>> which they appear.
>>
>> I already have quite a large photo album which meets
these requirements, but
>> every photo is displayed in its own page. Setting up
a new album was a lot of
>> work, and once it was set up it was effectively
impossible to modify the format
>> of the existing pages.
>>
>> The more I thought about it, the more I came to the
conclusion that a database
>> was not the answer to this application. Two weeks
ago I wrote:
>>
>> ".... but if I wait till I get a database set up it
looks as if I'll be lucky
>> to have it done by Christmas."
>>
>> Murray kindly offered to help, and I spent a week
trying to clarify my ideas.
>>
>> I decided that the best answer was to use a series
of text files to specify
>> which photos should be shown, and in what order. I
worked out a rough format,
>> and a week ago I tried to write a php program which
would automatically convert
>> a sample Word file into the desired format, and add
a heading containing
>> pointers, etc.
>>
>> I got this working much sooner than I expected, so I
decided to try the real
>> thing. I got a preliminary version working to day,
and you may care to have a
>> look at it:
>>
>>
http://www.corybas.com/Albums/07_Europe/Intro.php
>>
>> The home directory for my albums is called 'Albums'.
This contains the program
>> files, and a short text file listing all the
subdirectories.
>>
>> Below this is another directory for each individual
album -- for example
>> 07_Europe. Each individual directory contains an
introductory page 'Intro.php',
>> a file 'Main_ndx.txt', listing the photos to be
shown on the top-level index,
>> and 'Slide_ndx.txt', which lists all the photos to
be shown, together with their
>> titles, in the appropriate order.
>>
>> The main index has a sample photo for each block of
16 photos, together with
>> short descriptions of the groups. There are 6 photos
on each page.
>>
>> Below this is the subindex, which shows thumb prints
for all the photos in the
>> album, with 16 photos on each page.
>>
>> Finally there are the photos themselves. These are
the maximum size which can
>> be shown on a 768 by 1024 pixel screen, with the
given screen layout, and are
>> displayed without any distracting extraneous
information.
>>
>> Apart from the introductory page, all the pages are
the same size, and have the
>> navigation arrows in exactly the same place.
>>
>> You can scan through the albums, backwards and
forwards, at any level, and you
>> can drop to the level below by clicking on any of
the thumb prints. At present
>> you can only move from one album to another at the
top level, but eventually you
>> will be able to do so at any level.
>>
>> At present the albums contain only enough photos to
enable me to test the
>> program, and the titles are very scrappy. The
top-level data file lists several
>> albums which have not yet been converted, so you
will get an error message if
>> you try to scan left from the first album. I did
this primarily to enable me to
>> test the error handling procedures.
>>
>> At present the procedures for locating a given image
are fairly primitive, but
>> the performance I get is excellent. Although the
photos are relatively large,
>> my program takes an average of three seconds to load
each picture.
>>
>> By contrast
http://www.wildimages.biz/wi_gallery-wildlife.php
takes an average
>> of 10 seconds to load each page, and
>>
http://www.2010vancouverphotos.com/Index.php?spgmGal=BC%20Moments,
takes about
>> 25 seconds. I realise that some or all of the
difference could be explained by
>> propagation delays across the Pacific, and I would
appreciate any comparisons
>> from your side.
>>
>> The whole program occupies about 25KB, with another
5-10KB for each set of data
>> files. Because the individual albums are relatively
small, they are fairly
>> easily easy to manage, but the system can be
extended indefinitely without
>> degrading performance.
>>
>> I would be would be very grateful for your views on
this album, and any bug
>> reports. You can contact me privately using the
yellow button in the bottom
>> right hand corner of the introductory page.
>>
>> Clancy
Clancy

Similar Messages

  • What is means "Transport Type" "Number of Failures" "Last Failure Time" "Last Success Time" "Last Failure Status"

    when i running repladmin /showrepl    it show status
    Showrepl_COLUMNS
    Destination DC Site
    Destination DC
    Naming Context         is
    means  ?
    Source DC Site
    Source DC
    Transport Type         is
    means  ?
    Number of Failures     is
    means  ?
    Last Failure Time   
    Last Success Time   
    Last Failure Status    is
    means  ?
    Please explain to me .  Thnak you

    Naming Context: NamingContext refers to the directory partitions that Active Directory comprises. Naming contexts include the three Read/Write naming contexts — domain, schema, and configuration — and the optional Read-only naming contexts
    that are present on domain controllers that are global catalog servers. A naming context can also be an application directory partition. A naming context is specified as a distinguished name, which indicates its hierarchical relationship to the forest root
    domain (for example, DC=MyDomain,DC=Microsoft,DC=Com). 
    Source: http://technet.microsoft.com/en-us/library/cc757782(v=ws.10).aspx
    Transport Type: See Transport Type section in this Microsoft article: http://technet.microsoft.com/en-us/library/cc755994(v=ws.10).aspx
    As for the Number of Failures and the Last Failure Status
    they are used to identify how many failures occurred since the last successful replication and the the status of the replication (If
    Last Failure Status is equal to 0 then the replication is done successfully). Details here: http://support.microsoft.com/kb/2498185/en-us
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • Usage Analytics has not completed successfully the last X hours.

    A client of mine recently installed SP2013 SP1 in their environment and now I'm seeing a critical error in the ULS logs stating that the Usage Analytics Timer Job for the search service has not completed successfully since right around the installation of
    SP1. I bumped up the tracing for search analytics and don't see much though there is one line about the timer job being skipped due to the AnalysisState being "EnginePaused". Not really sure how to "unpause" it though.
    Here's a screenshot of the ULS entries I'm seeing (note the selected item).
    Anyone have any suggestions?
    -Gary
    Gary Lapointe, Blog: http://blog.falchionconsulting.com/, Twitter: http://twitter.com/glapointe Aptillon Inc.: http://www.aptillon.com

    The specific job that causes the issue is "Usage Analytics Timer Job for Search Application f499cb57-d11c-4377-afc9-9dc03c62a056". I can reproduce the error every time by triggering this job. Services are started where appropriate and timer service as well
    as search service has been restarted several times.
    Using reflection I can dig down and see that the analytics engine is indeed paused but I can't find any mechanism to resume it. Using reflection on the internal GlobalScheduler object to resume the engine results in this error: "EngineResume failed: This
    analysis engine service is currently/yet not primary". I have only one topology (the active one) and from central admin I can see that all components are showing okay.
    Gary Lapointe, Blog: http://blog.falchionconsulting.com/, Twitter: http://twitter.com/glapointe Aptillon Inc.: http://www.aptillon.com

  • Error (-36) Firewire SUCCESS at last!!!

    After giving up with the error (-36) problem I finally relented and bought a Firewire cable.
    I now have an iPod with 4217 songs and 664 pictures - 24Gb free.
    Finally, phew(!)

    I know you don't care, just having fun with ya
    I forsee Apple dropping firewire support for all the ipods in the future. Why? It isn't always available on all all systems (PC's that is), and Apple want's to sell as many of their products to as many people as possible (profit). The most common interface out there is USB. If I remember correctly, Firewire was Apple's "baby" when it came out. If anyone else wanted to use it, they had to license it from Apple.
    Sony picked up on it quickly and called it i.LINK, why? Because it was the fastest interface at the time and digital video needed the fastest interface because of the amount of data. Then other manufactures of video devices adopted it. Speculation is that this is why USB was develeoped, others didn't want to pay Apple for licensing.
    But since then USB has improved it speed to a burst 480 Mbps (planning is in place for faster speeds), and is being expanded to the wireless arena.
    One draw back with USB (some say) is that it designed for other types of prepherials (keyboards, mice, etc) and not just storage. Others like the idea.
    But the point is, USB has market saturation. It's on 99.9% (ok, this a guestimate) of the new systems out there. If Apple wants to market and sell USB devices, they need to make sure their devices work with 99.9% of the systems out there. Other manufactures do it on a regular basis, but why is Apple having such a hard time?
    If you look at the Nano forums, all the same issues that show up here for connecting to PC's still exist there.
    Apple is NOTORIOUS for ignoring issues, bugs. Saying "It's not our fault, it's theirs." or just simply ignoring it, hoping it will go away. They like to develop new things for the "Wow" factor (I think you just have to look at Steve Job's personality for this behaviour being transcended through the company).
    But if Apple realy and truely wants to compete in the market it needs to accept they no one is perfect, including themselves. They need to sit down and try to figure out and fix these issues. Sure they have the market share of PMP (portable music players) with the iPod, but that doesn't excuse them from accepting and fixing things.
    Personally, if I done my homework (like I normally do) I wouldn't have bought the iPod. I would have searched for another product that has a better track record with PC's. Sure it wouldn't look as nice as the iPod, but it would work as advertised out of the box. Remember the old saying "Beauty is only skin deep"?
    So why don't I sell this product and get something else? I'm stubborn, and feel that if I spend high dollar on a product, it should work as advertised.

  • Broken success kit status

    This is my second success kit status received like this:
    http://imageshack.us/photo/my-images/849/sdc13008c.jpg/
    http://imageshack.us/photo/my-images/18/sdc13011y.jpg/
    Now i want to know, how is this possible? I know they are sent via DHL Global Mail, but it's the second time i raised a SR for this "broken" success kit (last year i've had one identical, broken), and guess what.. the OCP Team asked me to confirm that my address (shipping address and e-mail address) are correct, even if the address is unchanged, 100% correct and has nothing to to with the real problem (you see, the pack - and also the diploma - is broken).
    I'm from Romania, and i'm sure this happens outside the Romania, i've asked the local DHL and they told me they received the pack broken, from outside..
    Anyone who has encountered this so far?

    I'm not sure how this could happen, but you can contact Oracle Certification Support and ask for a reship. It looks like something that has happened as the envelope has been sent through a marking machine at a mailing facility. I'll send these pics to our fulfillment team to see if they can help determine the problem, but once the kits are packaged, they don't go through any additional processing at our facility, they are picked up by DHL and processed further.
    When you contact Oracle Certification Support, go ahead and indicate that you have already confirmed your address in your Pearson VUE profile and that it is correct. Any time a candidate contact OCP support for a certificate reship, they request address confirmation. You'd be surprised at how many addresses are not correct, so we ask for confirmation as often as possible. They will also send you a soft copy of your certificate, which you will receive right away. Sorry that you'll have to wait on another certificate. Hopefully this one will come undisturbed.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Can you actually buy a 3GS in Ireland?

    I'm starting to believe that the iPhone 3GS is just a myth here in Ireland. I've been trying to buy a pay-as-you-go 32GB black model since June without success. Last year, I tried to buy a 3G from June up until December and couldn't get one then either. Out of stock, out of stock, out of stock...
    There are two suppliers in Ireland: o2 and Carphone Warehouse. With o2, the 32GB model is listed as "out of stock" for all but the most expensive plan (iPhone 700). Carphone Warehouse have no information at all about iPhone availability on their website - apparently, you're supposed to individually check with each of their local stores.
    Unlike o2, however, Carphone Warehouse do provide a contact phone number on their website. I've just spent the last hour on hold with them, only to be informed by what sounded like a prerecorded message that there was no one available to take my call because the building had just been evacuated. I kid you not.
    You can't contact o2 except via webmail. Which they just ignore. I find it astonishing that companies in the business of getting people to talk to each other make it impossible for you to talk to them.
    I've got €800 burning a hole in my pocket right now. I would like it to go to Apple, but if their sales agents in this benighted country are so intent on choking off the iPhone supply I may have no option but to look at other smartphones.
    I'll give it till the end of this month. After that, I've had enough of this nonsense.

    Thanks for the advice, Dave. I'm sorry but I don't buy the supply/demand mismatch theory in this case. It may have been true for the first couple of years of the iPhone's life but I very much doubt that it's true today, unless Apple is now being managed by morons.
    I've just rechecked the o2 webshop and found that I can buy any model of the 3G for any tariff and for pay-as-you-go. Even my two brain cells tell me that this means that o2 originally didn't believe the G3 would sell well, were subsequently overwhelmed by the demand, and overstocked it when it was much too late and the 3GS was on its way.
    To shift this outdated stock, they're restricting 3GS sales to their most expensive tariff. Essentially, o2 don't give two hoots for Apple's interests - they don't care about selling the iPhone, they only care about selling their own products.
    Sometimes I think what this country needs is another Famine...

  • ITunes 10.0.1 "the network connection could not be made"

    This was not a problem for me on 10.0. I can no longer update my podcasts because I get this error message
    "There was a problem downloading (podcast name) the network connection could not be made"
    so first I ran diagnostics for the network connection and it said that it could not make a secure connection to the itunes store. I clicked help and it said to add a rule to the windows firewall (even though one already existed), I did that and now its green but I still get the same error message. Here is the information from the diagnostics.
    Microsoft Windows 7 x64 Ultimate Edition (Build 7600)
    iTunes 10.0.1.22
    QuickTime 7.6.8
    FairPlay 1.9.16
    Apple Application Support 1.3.2
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.2.0.47
    Apple Mobile Device Driver 1.49.0.0
    Bonjour 2.0.3.0 (214.3)
    Gracenote SDK 1.7.1.420
    Gracenote MusicID 1.7.1.78
    Gracenote Submit 1.7.1.106
    iTunes Serial Number 0637C6B672852BC1
    Current user is not an administrator.
    The current local date and time is 2010-09-28 09:37:04.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Video Display Information
    NVIDIA, NVIDIA GeForce GTX 260M
    ** External Plug-ins Information **
    No external plug-ins installed.
    iPodService 10.0.1.22 is currently running.
    iTunesHelper is currently not running.
    Apple Mobile Device service 3.2.0.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {A05144D0-DC62-4367-9AEA-8537EF0D39C9}
    Description: Intel(R) 82577LC Gigabit Network Connection
    IP Address: none of your business
    Subnet Mask: 255.255.255.0
    Default Gateway: none of your business
    DHCP Enabled: Yes
    DHCP Server: none of your business
    Lease Obtained: Tue Sep 28 09:02:30 2010
    Lease Expires: Thu Sep 30 09:02:30 2010
    DNS Servers: none of your business
    Adapter Name: {E8E377A7-4E43-4F3C-9BE3-9218319096C5}
    Description: VirtualBox Host-Only Ethernet Adapter
    IP Address: none of your business
    Subnet Mask: 255.255.255.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: No
    DHCP Server:
    Lease Obtained: Thu Jan 01 09:00:00 1970
    Lease Expires: Thu Jan 01 09:00:00 1970
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Last successful store access was 2010-09-28 09:34:16.
    I modified it slightly because my IP address is not necessary for troubleshooting this issue. is anyone else having the same problem? how can i fix this

    Did you get anywhere with this? I'm getting the same error when I try to use Home Sharing. It worked through all the 9.x versions, but with 10.0.1, I can't even home share between two identical MacBooks. I get the above error when I try to copy a song / video / etc. from one library to another.

  • IPod Restore - Error Message 21

    Hi All,
    Hope someone can help as this is driving me insane - I've just installed iTunes 9.2.1 but when I went to Sync my iPod I was told I needed to restore it.
    Sooo....selected Restore but just as it gets to the end of the Restore process I get an error message (21). Having reviewed the info on this website I've tried everything from switching off Windows Firewall to uninstalling my security software.
    When I run Diagnostics, this is what I get - PLEASE can anyone help?!?!
    +Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)+
    +TOSHIBA Satellite L350D+
    +iTunes 9.2.1.5+
    +QuickTime 7.6.6+
    +FairPlay 1.8.20+
    +Apple Application Support 1.3.1+
    +iPod Updater Library 9.2d4+
    +CD Driver 2.2.0.1+
    +CD Driver DLL 2.1.1.1+
    +Apple Mobile Device 3.1.0.62+
    +Apple Mobile Device Driver 1.49.0.0+
    +Bonjour 2.0.2.0 (214.3)+
    +iTunes Serial Number 77D7ABF151E33DA6+
    +Current user is not an administrator.+
    +The current local date and time is 2010-08-06 15:41:25.+
    +iTunes is not running in safe mode.+
    +WebKit accelerated compositing is enabled.+
    +HDCP is not supported.+
    +Video Display Information+
    +ATI Technologies Inc., ATI Radeon X1250+
    +** External Plug-ins Information **+
    +No external plug-ins installed.+
    +Genius ID: 77997418ba0ddcad18ddf23a6a6fd31a+
    +** Network Connectivity Tests **+
    +Network Adapter Information+
    +Adapter Name: {AF6E733D-F225-4E62-85E6-73B8C8D1BCFB}+
    +Description: Realtek RTL8187B Wireless 802.11b/g 54Mbps USB 2.0 Network Adapter+
    +IP Address: 192.168.1.2+
    +Subnet Mask: 255.255.255.0+
    +Default Gateway: 192.168.1.1+
    +DHCP Enabled: Yes+
    +DHCP Server: 192.168.1.1+
    +Lease Obtained: Fri Aug 06 15:15:09 2010+
    +Lease Expires: Sat Aug 07 14:21:21 2010+
    +DNS Servers: 192.168.1.1+
    + 192.168.1.1+
    +Adapter Name: {50701037-1545-4784-9A8B-106F52CA6AA1}+
    +Description: Realtek RTL8102E Family PCI-E Fast Ethernet NIC (NDIS 6.0)+
    +IP Address: 0.0.0.0+
    +Subnet Mask: 0.0.0.0+
    +Default Gateway: 0.0.0.0+
    +DHCP Enabled: Yes+
    +DHCP Server: +
    +Lease Obtained: Thu Jan 01 00:00:00 1970+
    +Lease Expires: Thu Jan 01 00:00:00 1970+
    +DNS Servers: +
    +Active Connection: LAN Connection+
    +Connected: Yes+
    +Online: Yes+
    +Using Modem: No+
    +Using LAN: Yes+
    +Using Proxy: No+
    +SSL 3.0 Support: Enabled+
    +TLS 1.0 Support: Disabled+
    +Firewall Information+
    +Windows Firewall is off.+
    +Connection attempt to Apple website was successful.+
    +Connection attempt to iTunes Store was successful.+
    +Secure connection attempt to iTunes Store was successful.+
    +Secure connection attempt to iPhone activation server was successful.+
    +Last successful store access was 2010-08-06 15:35:33.+
    +** CD/DVD Drive Tests **+
    +LowerFilters: PxHelp20 (2.0.0.0),+
    +UpperFilters: GEARAspiWDM (2.2.0.1),+
    +F: HL-DT-ST DVDRAM GSA-T40N, Rev JT03+
    +Audio CD in drive.+
    +Found 12 songs on CD, playing time 51:04 on Audio CD.+
    +Track 1, start time 00:02:00+
    +Track 2, start time 05:09:35+
    +Track 3, start time 09:08:59+
    +Track 4, start time 12:39:49+
    +Track 5, start time 16:55:37+
    +Track 6, start time 20:48:59+
    +Track 7, start time 24:22:19+
    +Track 8, start time 27:32:51+
    +Track 9, start time 30:57:16+
    +Track 10, start time 34:25:00+
    +Track 11, start time 38:38:11+
    +Track 12, start time 43:06:08+
    +Audio CD reading succeeded.+
    +Get drive speed succeeded.+
    +The drive CDR speeds are: 4 10 16 24.+
    +The drive CDRW speeds are: 4.+
    +The drive DVDR speeds are: 4.+
    +The drive DVDRW speeds are: 4.+
    +** Device Connectivity Tests **+
    +iPodService 9.2.1.5 is currently running.+
    +iTunesHelper 9.2.1.5 is currently running.+
    +Apple Mobile Device service 3.1.0.0 is currently running.+
    +Universal Serial Bus Controllers:+
    +Standard Enhanced PCI to USB Host Controller. Device is working properly.+
    +Standard OpenHCD USB Host Controller. Device is working properly.+
    +Standard OpenHCD USB Host Controller. Device is working properly.+
    +Standard OpenHCD USB Host Controller. Device is working properly.+
    +Standard OpenHCD USB Host Controller. Device is working properly.+
    +Standard OpenHCD USB Host Controller. Device is working properly.+
    +No FireWire (IEEE 1394) Host Controller found.+
    +Most Recent Devices Not Currently Connected:+
    +iPod touch running firmware version 2.2.1+
    +Serial Number: 9E948391203+
    +** Device Sync Tests **+
    +No iPod, iPhone or iPad found.+

    Hi,
    Did you manage to sort this ? I have now had this error 21 message for days. I have tried everything bar uninstalling itunes and reinstalling it ?
    ANy help would be grately appreciated !!

  • Blue screen when re-opening iTunes 9.0.3 w/ iPod Classic already plugged in

    I was wondering if anyone else has experienced this or something similar.
    I have already reported this as a potential bug to Apple at http://www.apple.com/feedback/itunesapp.html
    This is regarding iTunes 9.0.3.15 for Windows
    Potential bug: Windows blue screen (SYSTEMSERVICEEXCEPTION) when re-opening iTunes with iPod Classic 120GB already plugged into USB port.
    I have been able to replicate this problem twice now. Here are the exact steps:
    1. Plug iPod Classic 120GB (bought new in November 2008) into a USB port and iTunes opens and syncs (I have it set to manually manage my iPod).
    2. Use iTunes for a bit, then click the eject icon next to my iPod in iTunes (when it's not syncing) but leave iPod plugged into the USB port (to charge).
    3. Close iTunes and use Internet Explorer for a few minutes and close Internet Explorer (with no other apps running).
    4. Open iTunes. iTunes connects to iPod (iPod screen shows "Connected").
    5. Scroll through the iTunes Music Library in List view, click any music file and a Windows Blue Screen appears (SYSTEMSERVICEEXCEPTION), does a memory dump and then forces the computer to restart.
    So far, the blue screen only occurs under these specific circumstances. I do not know if this problem existed before iTunes 9.0.3.15 as I have never tried the above steps in earlier versions. I just happened to be able to retrace my steps to notice the blue screen problem in 9.0.3.15
    This is the first time I have ever encountered a Windows Vista blue screen error in the year and half I have used Vista.
    I am running Windows Vista SP1 64-bit on an HP Pavilion dv7-1014ca notebook.
    Here is my iTunes diagnostics log (with some lines removed for privacy reasons):
    *START ITUNES DIAGNOSTICS LOG*
    Microsoft Windows Vista x64 x64 Home Premium Edition Service Pack 1 (Build 6001)
    Hewlett-Packard HP Pavilion dv7 Notebook PC
    iTunes 9.0.3.15
    QuickTime 7.6.5
    FairPlay 1.6.16
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.6.0.32
    Apple Mobile Device Driver 1.45.0.0
    Bonjour 1.0.6.2 (118.5)
    Current user is not an administrator.
    The current local date and time is 2010-02-01 22:42:01.
    iTunes is not running in safe mode.
    Video Display Information
    NVIDIA, NVIDIA GeForce 9600M GT
    _External Plug-ins Information_
    No external plug-ins installed.
    _Network Connectivity Tests_
    Network Adapter Information
    Adapter Name:
    Description: Intel(R) WiFi Link 5100 AGN
    Adapter Name:
    Description: Realtek RTL8168C(P)/8111C(P) Family PCI-E Gigabit Ethernet NIC (NDIS 6.0)
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-02-01 22:40:52.
    _iPod/iPhone Connectivity Tests_
    iPodService 9.0.3.15 is currently running.
    iTunesHelper 9.0.3.15 is currently running.
    Apple Mobile Device service 2.50.39.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    OHCI Compliant IEEE 1394 Host Controller. Device is working properly.
    Connected Device Information:
    XXXX'S IPO (G:\), iPod classic running firmware version 2.0.1
    Serial Number:
    Bus Speed: 61440
    *END ITUNES DIAGNOSTICS LOG*

    I've gotten the exact same error message and problem... When I connect my iPod Nano 3Gen, iTunes comes up -- syncing begins -- and then immediately triggers a blue screen with the SystemServiceException error and a crash dump is generated. I have been unable to find a resolution in 3-4 weeks of searching, including HP Technical Support, trolling the Windows 7 Support sites, and now, here. The Advice given by HP was to uninstall all USB drivers and let reboot reinstall them. That didn't work. Then they asked me to reboot my PC, hit F10 until the BIOS came up, and then find and disable the "enable legacy USB" capability -- except that no such setting is available in my BIOS. Obviously it's a driver issue, and just as obviously it's a Windows 7 / iTunes issue -- but no one is offering a solution, yet.

  • 2131 Error. Here are my diagnostics.

    Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)
    Dell Inc. Inspiron 531
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0028AE6403273FF8
    Current user is not an administrator.
    The current local date and time is 2012-09-04 23:34:31.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA , NVIDIA GeForce 6150SE nForce 430
    **** External Plug-ins Information ****
    Plug-in Name:          Lyrics Plugin
    Plug-in Loaded:          Yes
    Plug-in Version:          0.8
    Plug-in File Version:          0.4.0.0
    Plug-in Path:          C:\Program Files\iTunes\Plug-ins\itw_lyricsplugin.dll
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {DD401D54-B87A-4DFF-9F60-E66DFB255859}
    Description:          NVIDIA nForce 10/100 Mbps Ethernet
    IP Address:          192.168.10.2
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.10.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.10.1
    Lease Obtained:          Tue Sep 04 22:41:14 2012
    Lease Expires:          Wed Sep 05 22:41:14 2012
    DNS Servers:          172.20.67.11
                        172.20.67.12
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-09-04 23:05:42.
    The date and time on this computer is not set correctly. Secure connections to the iTunes Store may fail.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: TSSTcorp DVD+-RW TS-H653B, Rev D200
    Drive is empty.
    Force Optical Power Calibration before burn is turned on in the preferences.
    The last failed audio CD burn had error code 2131(0x00000853). It happened on drive E: TSSTcorp DVD+-RW TS-H653B on CDR media at speed 0X.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Standard OpenHCD USB Host Controller.  Device is working properly.
    Standard Enhanced PCI to USB Host Controller.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Most Recent Devices Not Currently Connected:
    iPod nano (5th Generation) running firmware version 1.0.2
    Serial Number:          YM939F1572F
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    Microsoft Windows Vista Home Premium Edition Service Pack 2 (Build 6002)
    Dell Inc. Inspiron 531
    iTunes 10.6.3.25
    QuickTime 7.7.2
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver 1.59.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 001BB264033ECF68
    Current user is not an administrator.
    The current local date and time is 2012-09-05 23:24:32.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA , NVIDIA GeForce 6150SE nForce 430
    **** External Plug-ins Information ****
    Plug-in Name:          Lyrics Plugin
    Plug-in Loaded:          Yes
    Plug-in Version:          0.8
    Plug-in File Version:          0.4.0.0
    Plug-in Path:          C:\Program Files\iTunes\Plug-ins\itw_lyricsplugin.dll
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {DD401D54-B87A-4DFF-9F60-E66DFB255859}
    Description:          NVIDIA nForce 10/100 Mbps Ethernet
    IP Address:          192.168.10.2
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.10.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.10.1
    Lease Obtained:          Wed Sep 05 21:22:53 2012
    Lease Expires:          Thu Sep 06 21:22:53 2012
    DNS Servers:          172.20.67.11
                        172.20.67.12
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was unsuccessful.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2012-09-04 23:05:42.
    The date and time on this computer is not set correctly. Secure connections to the iTunes Store may fail.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: TSSTcorp DVD+-RW TS-H653B, Rev D300
    Media in drive is blank.
    Get drive speed succeeded.
    The drive CDR speeds are:   4.
    The drive CDRW speeds are:   4.
    The drive DVDR speeds are:   4.
    The drive DVDRW speeds are:   4.
    Force Optical Power Calibration before burn is turned on in the preferences.
    The last failed audio CD burn had error code 2131(0x00000853). It happened on drive E: TSSTcorp DVD+-RW TS-H653B on CDR media at speed 0X.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Standard OpenHCD USB Host Controller.  Device is working properly.
    Standard Enhanced PCI to USB Host Controller.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    Most Recent Devices Not Currently Connected:
    iPod nano (5th Generation) running firmware version 1.0.2
    Serial Number:          YM******72F
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.
    <Edited by Host>

  • Error 4260 - I can't burn a disc

    Been looking for solutions all day.
    When ever I try to burn something it gets to about 1/3 of the way and then ejects and gives me the 4260 error message. Using Sony CD-R Audio 80min discs. I've tried using other discs. It wasn't doing this last week. I was thinking it was the CD type, but I'm not sure. I've been told to use a reg fix.
    I'm not a computer person. Thanks for the help.
    Microsoft Windows Vista x64 x64 Home Premium Edition Service Pack 2 (Build 6002)
    Dell Inc. Dell XPS420
    iTunes 10.1.0.54
    QuickTime 7.6.8
    FairPlay 1.10.14
    Apple Application Support 1.4
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.3.0.69
    Apple Mobile Device Driver not found.
    Bonjour 2.0.4.0 (214.3)
    Gracenote SDK 1.8.2.457
    Gracenote MusicID 1.8.2.89
    Gracenote Submit 1.8.2.123
    Gracenote DSP 1.8.2.34
    iTunes Serial Number <Serial Number Removed by Host>
    Current user is not an administrator.
    The current local date and time is 2010-12-18 16:25:32.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    ATI Technologies Inc., ATI Radeon HD 3650
    ** External Plug-ins Information **
    Plug-in Name: TuneUp Companion
    Plug-in Loaded: Yes
    Plug-in Version: 0.0.5
    Plug-in File Version: 1.1.0.0
    Plug-in Path: C:\Program Files (x86)\iTunes\Plug-ins\iTuneUp.dll
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {C6F8CD4A-59C2-4D36-B264-D7A2D35013FC}
    Description: Intel(R) 82566DC-2 Gigabit Network Connection
    IP Address: 192.168.1.108
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sat Dec 18 13:47:53 2010
    Lease Expires: Sun Dec 19 13:47:53 2010
    DNS Servers: 205.152.37.23
    205.152.144.23
    192.168.1.1
    Adapter Name: {1B0977FC-B6CC-4B92-B7DA-AF2B1738E901}
    Description: Hamachi Network Interface
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 5.0.0.1
    DHCP Enabled: Yes
    DHCP Server: 0.0.0.0
    Lease Obtained: Wed Dec 31 19:00:00 1969
    Lease Expires: Wed Dec 31 19:00:00 1969
    DNS Servers:
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Disabled
    Firewall Information
    Windows Firewall is off.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Last successful store access was 2010-12-18 15:19:13.
    ** CD/DVD Drive Tests **
    LowerFilters: PxHlpa64 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: HL-DT-ST DVDRWBD GBC-H20N, Rev C102
    Drive is empty.
    Writing CD text is turned on in the preferences. If you’re having problems burning CDs, try turning this preference off.
    Force Optical Power Calibration before burn is turned on in the preferences.
    The last failed audio CD burn had error code 4260(0x000010a4). It happened on drive E: HL-DT-ST DVDRWBD GBC-H20N on CDR media at speed 8X.
    ** Device Connectivity Tests **
    iPodService 10.1.0.54 (x64) is currently running.
    iTunesHelper 10.1.0.54 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) ICH9 Family USB Universal Host Controller - 2934. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2935. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2936. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2937. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2938. Device is working properly.
    Intel(R) ICH9 Family USB Universal Host Controller - 2939. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A. Device is working properly.
    Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C. Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    Texas Instruments OHCI Compliant IEEE 1394 Host Controller. Device is working properly.
    Most Recent Devices Not Currently Connected:
    iPod nano (2nd Generation) running firmware version 1.0.2
    Serial Number: 6U640X02VQ5
    ** Device Sync Tests **
    No iPod, iPhone, or iPad found.

    probably admin account is required to burn it
    http://speechlab.bu.edu/xml/6/25/index.html
    http://speechlab.bu.edu/xml/6/26/index.html
    http://speechlab.bu.edu/xml/6/27/index.html
    http://speechlab.bu.edu/xml/6/28/index.html
    http://speechlab.bu.edu/xml/6/29/index.html
    http://speechlab.bu.edu/xml/6/30/index.html
    http://speechlab.bu.edu/xml/6/25/map.html
    http://speechlab.bu.edu/xml/6/26/map.html
    http://speechlab.bu.edu/xml/6/27/map.html
    http://speechlab.bu.edu/xml/6/28/map.html
    http://speechlab.bu.edu/xml/6/29/map.html
    http://speechlab.bu.edu/xml/6/30/map.html

  • Unable to activate Genius

    I am unable to activate Genius since upgrading to Windows 7. Prior with Vista and iTunes 9 Genius worked fine. Upgrade to Win7 and I cannot activate Genius.
    It goes through step 1 fine then goes into step 2. It pops up an error message after about a minute that says "We could not complete your iTunes store request. The network connection timed out. Make sure your network connections are correct and your network connection is active, then try again".
    Well, I have been trying again later for about a month all with the same error.
    I have rebuilt the library--no luck.
    I CAN access and download new content from the iTunes store. I just cannot activate genius.
    Options?
    Here is the diagnostic test result:
    Microsoft Windows 7 Business Edition (Build 7600)
    HP-Pavilion GC676AA-ABA m8150n
    iTunes 9.0.2.25
    QuickTime 7.6.5
    FairPlay 1.5.23
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.6.0.32
    Apple Mobile Device Driver not found.
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number ECBC09B56D49EBBB
    Current user is not an administrator.
    The current local date and time is 2010-01-30 15:14:02.
    iTunes is not running in safe mode.
    Video Display Information
    NVIDIA, NVIDIA GeForce 8400 GS
    ** External Plug-ins Information **
    No external plug-ins installed.
    Genius ID: 1f7f9cc788585092f8a4d0207622ff5d
    iPodService 9.0.2.25 is currently running.
    iTunesHelper 9.0.2.25 is currently running.
    Apple Mobile Device service 2.50.39.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {87E5ED95-1C2D-4E08-B471-2D2CAE68D47A}
    Description: Microsoft Virtual WiFi Miniport Adapter
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Wed Dec 31 19:00:00 1969
    Lease Expires: Wed Dec 31 19:00:00 1969
    DNS Servers:
    Adapter Name: {EB040ABD-6DE1-4A0A-90EB-6B94ECB7CF48}
    Description: Bluetooth Device (Personal Area Network)
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Wed Dec 31 19:00:00 1969
    Lease Expires: Wed Dec 31 19:00:00 1969
    DNS Servers:
    Adapter Name: {822D4B32-268D-4D10-9127-FC7AF814ABA3}
    Description: USB Wireless 802.11 b/g Adaptor
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Wed Dec 31 19:00:00 1969
    Lease Expires: Wed Dec 31 19:00:00 1969
    DNS Servers:
    Adapter Name: {FBB54D1F-6C23-41DD-957F-C801A6EB801B}
    Description: Intel(R) 82566DC Gigabit Network Connection
    IP Address: 192.168.254.3
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.254.254
    DHCP Enabled: Yes
    DHCP Server: 192.168.254.254
    Lease Obtained: Sat Jan 30 14:43:12 2010
    Lease Expires: Sat Jan 30 14:43:11 2010
    DNS Servers: 192.168.254.254
    192.168.254.254
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-01-30 15:12:04.

    I finally managed to fix this problem by removing groups of songs from my library until Genius successfully started. I started removing artists beginning with A and by the time I got down to D Genius started to work. This made me think that it was related to a specific song. However, I gradually added all of the tracks back in to my library and Genius continued to update OK!! I now have all of the same songs in the library and Genius is working fine. I have over 12000 songs in my library so it may be a bug related to the number of tracks. The downside to removing the tracks (but keeping the files) is that you lose the playcount and you have to add them to your playlists again.
    Hope this helps.

  • Ipod not found - will not sync; restored and lost everything. Please help.

    To whom it may concern,
    My iPod Classic has worked perfectly for the few years I've had it. I only use it a few times a month on average so it's still in really nice shape.
    Earlier today, I went to sync it like I do every couple of weeks whenever I add new songs, and something strange occurred. At first, it seems to say "Syncronizing..." but quickly stops and displays the "Connected" status instead - not long enough to sync even one song.
    Sure enough, I checked it and it had not updated.
    After using the "Run Diagnostics" option, it tells me "Device Sync Tests Results: No iPod touch, iPhone or iPad found."
    Yet - under "Device Connectivity Tests", it does say "iPod Found" and it shows up as a device in my iTunes - but not in my Devices (under Preferences).
    I followed every step in the troubleshooting guide that iTunes directed me to, each with the same results. As a last resort, I used a Factory Restore, which was what the website told me to do.
    To my horror, the problem STILL persists - and I just cleared out not only all of my songs, but photos that were very important to me that I only had on my ipod. I even tried to do a backup first, but my device would not show up under the "Preferences/Devices" category, I could not even save them before I restored it.
    Now I am stuck with an ipod that will not sync with my itunes library, and an ipod that has absolutely nothing on it. At least before I restored it, it had all of my old music and photos on it.
    This is very frustrating and upsetting. If there is anything that might be able to be done, please help - and please, do not send me back to the same webpage - I already tried everything there at least twice now.
    I also borrowed a different cable to make sure it wasn't my adapter, and there was no difference.
    To make matters worse, as I am trying to find someone to assist me, I received this message after entering my serial number;
    "It looks like your product is not covered for complimentary technical support, so you may need to purchase a single incident of support."
    This iPod already cost me $250.00 and that was steep in and of itself. I really do not feel that it would be fair to have to pay even more just to get some help when it malfunctions.
    If absolutely anything can be done, please help me. I would be very grateful.
    Thank you in advance for any assistance.
        P.S.- This is a copy of the error message I received;
    Microsoft Windows 8 x64 Home Premium Edition (Build 9200)
    ASUSTeK COMPUTER INC. X202EV
    iTunes 11.1.3.8
    QuickTime 7.7.4
    FairPlay 2.5.16
    Apple Application Support 2.3.6
    iPod Updater Library 11.1f5
    CD Driver 2.2.3.0
    CD Driver DLL 2.1.3.1
    Apple Mobile Device 7.0.0.117
    Apple Mobile Device Driver 1.64.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 007DB9C80C439708
    Current user is not an administrator.
    The current local date and time is 2013-11-28 22:05:46.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is supported.
    Core Media is supported.
    **** External Plug-ins Information ****
    No external plug-ins installed.
    Genius ID: e38663b94f826b3f535ae2a59ada9fea
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:    {F0006950-D07F-4649-AD41-A38C48C0B9DA}
    Description:    Microsoft Wi-Fi Direct Virtual Adapter
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Wed Dec 31 16:00:00 1969
    Lease Expires:    Wed Dec 31 16:00:00 1969
    DNS Servers:   
    Adapter Name:    {4CD83EC0-97FE-4E11-9DC2-0A1A28338772}
    Description:    Qualcomm Atheros AR8162/8166/8168 PCI-E Fast Ethernet Controller (NDIS 6.30)
    IP Address:    0.0.0.0
    Subnet Mask:    0.0.0.0
    Default Gateway:    0.0.0.0
    DHCP Enabled:    Yes
    DHCP Server:   
    Lease Obtained:    Wed Dec 31 16:00:00 1969
    Lease Expires:    Wed Dec 31 16:00:00 1969
    DNS Servers:   
    Adapter Name:    {C6056BBC-55CD-40AC-85EA-86167FEDB5D0}
    Description:    Qualcomm Atheros AR9485 Wireless Network Adapter
    IP Address:    192.168.1.112
    Subnet Mask:    255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:    Yes
    DHCP Server:    192.168.1.1
    Lease Obtained:    Thu Nov 28 21:26:04 2013
    Lease Expires:    Fri Nov 29 21:26:04 2013
    DNS Servers:    192.168.7.254
    Active Connection:    LAN Connection
    Connected:    Yes
    Online:        Yes
    Using Modem:    No
    Using LAN:    Yes
    Using Proxy:    No
    Firewall Information
    Windows Firewall is on.
    iTunes is NOT enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2013-11-28 22:05:29.
    **** Device Connectivity Tests ****
    iPodService 11.1.3.8 (x64) is currently running.
    iTunesHelper 11.1.3.8 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    No Universal Serial Bus Controller found.
    No FireWire (IEEE 1394) Host Controller found.
    Connected Device Information:
    FLUKE (E:\), iPod classic running firmware version 2.0.1
    Serial Number:    8N837N2A2C7
    Bus Speed:    61440
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    This issue has been resolved - my Support Advisor, Edgar, was able to discern what was causing the problem.
    It appears that, despite years of never experiencing this, one of the latest ipod updates actually altered my device's personal settings and changed it to "Manual" for all synchronizing; even performcing Factory Restores did not change it back to being automatic.
    My ipod is working as good as ever now thanks to Edgar. If anyone else is having this problem, please make sure you check your device's settings in iTunes and see if "Manual" is checked - even if you never changed the settings yourself and have no reason to suspect that to be the problem, as was the case here. If it is checked - uncheck it to enable automatic syncing.
    So relieved this was not a much more serious problem. I've missed having my music on the go. Thanks, Edgar!

  • Upgraded now iphone not recognised by itunes

    Iphone now not recognised by itunes upgrade failure, phone backup done? phone wiped clean, now not recognised by itunes. Iphone4 only shows symbol - connect to itunes. if rung goes straight to answer phone... can’t reinstall phone setting
    Please Help!!!!
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    Shuttle Inc SK22V10
    iTunes 10.5.0.142
    QuickTime not available
    FairPlay 1.13.35
    Apple Application Support 2.1.5
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 4.0.0.96
    Apple Mobile Device Driver 1.57.0.0
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.3.494
    Gracenote MusicID 1.9.3.106
    Gracenote Submit 1.9.3.136
    Gracenote DSP 1.9.3.44
    iTunes Serial Number 0012AA2407E53CC0
    Current user is an administrator.
    The current local date and time is 2011-10-25 10:59:39.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    NVIDIA GeForce 7900 GT/GTO
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:          {03B67EC8-2820-41F2-AEF0-217534063E15}
    Description:          VIA Compatable Fast Ethernet Adapter - Packet Scheduler Miniport
    IP Address:          192.168.1.8
    Subnet Mask:          255.255.255.0
    Default Gateway:          192.168.1.1
    DHCP Enabled:          Yes
    DHCP Server:          192.168.1.1
    Lease Obtained:          Tue Oct 25 10:33:36 2011
    Lease Expires:          Wed Oct 26 10:33:36 2011
    DNS Servers:          192.168.1.1
    Active Connection:          LAN Connection
    Connected:          Yes
    Online:                    Yes
    Using Modem:          No
    Using LAN:          Yes
    Using Proxy:          No
    SSL 3.0 Support:          Enabled
    TLS 1.0 Support:          Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to browsing iTunes Store was successful.
    Connection attempt to purchasing from iTunes Store was successful.
    Connection attempt to iPhone activation server was successful.
    Connection attempt to firmware update server was successful.
    Connection attempt to Gracenote server was successful.
    Last successful iTunes Store access was 2011-10-25 10:42:07.
    **** CD/DVD Drive Tests ****
    LowerFilters: Pfc (2.5.0.204), PxHelp20 (2.0.0.0),
    UpperFilters: GEARAspiWDM (2.2.0.1),
    E: PIONEER DVD-RW  DVR-111D, Rev 1.23
    Audio CD in drive.
    Found 8 songs on CD, playing time 74:00 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 04:07:56
    Track 3, start time 18:33:06
    Track 4, start time 23:01:36
    Track 5, start time 37:41:28
    Track 6, start time 45:20:46
    Track 7, start time 50:53:11
    Track 8, start time 61:04:51
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are:   4 10 16 20 24 32 40 48.
    The drive CDRW speeds are:   4.
    The drive DVDR speeds are:   4.
    The drive DVDRW speeds are:   4.
    **** Device Connectivity Tests ****
    iPodService 10.5.0.142 is currently running.
    iTunesHelper 10.5.0.142 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    VIA Rev 5 or later USB Universal Host Controller.  Device is working properly.
    VIA USB Enhanced Host Controller.  Device is working properly.
    FireWire (IEEE 1394) Host Controllers:
    VIA OHCI Compliant IEEE 1394 Host Controller.  Device is working properly.
    Most Recent Devices Not Currently Connected:
    iPod classic running firmware version 1.1.2
    Serial Number:          8K741QXJYMV
    iPhone 4 (GSM) running firmware version 4.2.1
    Serial Number:          83052PL1A4S
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    Read here to troubleshoot your issue - http://support.apple.com/kb/TS1591

  • Cannot access iTunes store after upgrading to Windows 7 Pro x64.

    I recently upgraded from 32-bit Windows XP to 64-bit Windows 7 Professional by clean install (format) and re-installed iTunes for 64-bit systems. Since this upgrade, I can no longer access the iTunes store.
    I can view and edit my account information and the diagnostics gives no clue.
    I am using a wireless internet connection and the latest version of iTunes. If you need any other information please ask.
    Any help would be much appreciated.
    Microsoft Windows 7 x64 Business Edition (Build 7600)
    MICRO-STAR INTERANTONAL CO.,LTD MS-7302
    iTunes 9.0.3.15
    QuickTime 7.6.5
    FairPlay 1.6.16
    Apple Application Support 1.1.0
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 2.6.0.32
    Apple Mobile Device Driver not found.
    Bonjour 1.0.6.2 (118.5)
    iTunes Serial Number 90C2B1DAB5031321
    Current user is an administrator.
    The current local date and time is 2010-02-02 21:10:49.
    iTunes is not running in safe mode.
    Video Display Information
    NVIDIA, NVIDIA GeForce GT 240
    ** External Plug-ins Information **
    No external plug-ins installed.
    The drive E: HUAWEI Mass Storage Rev 2.31 is a USB 1 device.
    iPodService 9.0.3.15 is currently running.
    iTunesHelper 9.0.3.15 is currently running.
    Apple Mobile Device service 2.50.39.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {B34C1DFB-2F76-45AF-B6AB-1B426CB6B5D2}
    Description: HUAWEI3G.3 Mobile Broadband
    IP Address: 115.130.61.126
    Subnet Mask: 255.255.255.255
    Default Gateway: 0.0.0.0
    DHCP Enabled: No
    DHCP Server:
    Lease Obtained: Thu Jan 01 11:00:00 1970
    Lease Expires: Thu Jan 01 11:00:00 1970
    DNS Servers: 202.124.68.182
    202.124.68.182
    202.124.65.22
    Adapter Name: {995D78CE-E0AB-449D-8BC6-6CAE66A6A2FC}
    Description: Realtek RTL8168C(P)/8111C(P) Family PCI-E Gigabit Ethernet NIC (NDIS 6.20)
    IP Address: 0.0.0.0
    Subnet Mask: 0.0.0.0
    Default Gateway: 0.0.0.0
    DHCP Enabled: Yes
    DHCP Server:
    Lease Obtained: Thu Jan 01 11:00:00 1970
    Lease Expires: Thu Jan 01 11:00:00 1970
    DNS Servers:
    Active Connection: HUAWEI3G.3 Mobile Broadband
    Connected: Yes
    Online: Yes
    Using Modem: Yes
    Using LAN: No
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple website was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-02-02 21:06:40.
    Message was edited by: joshthomas

    Just wanted to say that I was having the same problem accessing the iTunes store. the problem was that I downloaded a PDF with a virus that masquerades as an Antivirus program, called Antivirus Soft. This thing installs itself and resets your Internet settings to its own proxy server. However, I don't use MSIE and didn't think to clear its proxy settings. I ran iTunes diagnostics and learned thet iTunes used the LAN settings from MSIE to connect to the Internet. Once I cleared the LAN settings from MSIE, I was able to connect.
    SO, check your LAN settings if you're having trouble connecting but haven't received any Antivirus Soft warnings. The virus is a bear to get rid of. Any attempt to start an antivirus program is thwarted until you can get rid of the virus. You get "error messages" saying that any program you attempt to open is infected, but it isn't.I managed to get rid of Antivirus Soft by using McAfee Antivirus after a few attempt. The frustrating thing is that the viruis installs itself in your startup program, so you have to get your real antivirus running very fast after reboot.

Maybe you are looking for

  • Zonelarm on windows XP pro blocks firefox after update to 3.6.8. Is zonealarm or firefox at fault?

    I've used firefox on windows XP (4 users) pro since version 2.x. I was happily applying every update until 3.6.7+(?). After installing update 3.6.8 my internet browser access stopped working (I'm using Opera for the first time to write this). I've do

  • Error sending e-mail by Authentication unsucessful

    Hi PI Experts, I´m with problems for sending e-mails in SMTP Adapter Receiver. In SXI_MONITOR display as message: "server not responding OK to Auth; 535 5.7.3 Authentication unsucessful". This problem occurs only in QAS but in DEV and PRD is working.

  • Verify Sufficient Priviledges

    When I try to install Bonjour, as it starts I get the message "Service 'Bonjour Service' failed to start. Verify that you have sufficient priviledges to start system services" I have SP2. My windows firewall is off, I have disabled anti-spyware, viru

  • Migrating Creative Suite 4 from old Mac to new Mac: how?

    Hi_ I just got a new Macbook Pro and used Migration Assistant to xfer all my stuff on the old Macbook Pro to the new one. Now my Adobe Creative Suite 4 won't work on the new Mac. How do I get the software to work on the new Mac? Thanks, Mark

  • Error message "can't sync this IPOD"- file missing?

    Evidently my sync file on my IPOD Classic can't be found.  Is this another Lion glitch?  My Canon MX860 printer won't work (not compatible with Lion either.